Fuzzy Matching Publisher Data

import pandas as pd
import json
from rapidfuzz import process, fuzz

# Load Top Publishers csv file with Lat/Lon + address Info 
publishers_df = pd.read_csv("publishers_address.csv")

# Lowercase publisher names for consistent matching
publishers_df['publisher'] = publishers_df['publisher'].str.lower()

top_publishers = publishers_df['publisher'].unique().tolist()

# Prepare List of Yearly CSV Files, loop to create list of all years csv files
csv_files = [f"df_{year}.csv" for year in range(1912, 1923)]
years = list(range(1912, 1923))

output_data = []

# Manual OCR spelling Fixes - helpful??
ocr_corrections = {
    "macmillax": "macmillan",
    "macmillay": "macmillan",
    "longmavs": "longmans",
    "loxgmans": "longmans",
    "longyans": "longmans",
    "constanle": "constable",
    "constarle": "constable",
    "constartle": "constable",
    "jlongmans": "longmans",
}

# Loop Through Yearly CSVs 
for file, year in zip(csv_files, years):
    print(f"\nπŸ“„ Processing {file} for year {year}")
    
    df = pd.read_csv(file)

    # Normalize publisher column
    if 'publisher' not in df.columns:
        print(f"⚠️ 'publisher' column not found in {file}, skipping.")
        continue

    pub_counts = {pub: 0 for pub in top_publishers}

    # drops na values
    for raw_pub in df['publisher'].dropna():
        raw_pub = raw_pub.lower().strip()
        raw_pub = ocr_corrections.get(raw_pub, raw_pub)

        # fuzzy match
        match, score, _ = process.extractOne(raw_pub, top_publishers, scorer=fuzz.ratio)

        if score >= 80:  # can change this
            pub_counts[match] += 1
        else:
            print(f"❌ No strong match: '{raw_pub}' β†’ '{match}' (score: {score})")

    for pub, count in pub_counts.items():
        if count > 0:
            row = publishers_df[
                (publishers_df['publisher'] == pub) & (publishers_df['year'] == year)
            ]
            if row.empty:
                print(f"⚠️ No location info for '{pub}' in year {year}")
                continue

            lat = row.iloc[0]['latitude']
            lon = row.iloc[0]['longitude']

            # Skip rows with missing or invalid coordinates
            if pd.isna(lat) or pd.isna(lon):
                print(f"⚠️ Skipping '{pub}' in {year} due to missing lat/lon")
                continue

            addr = row.iloc[0].get('ecb_address', "")

            output_data.append({
                "publisher": pub.title(),  # title case for display
                "year": year,
                "books_published": count,
                "latitude": lat,
                "longitude": lon,
                "ecb_address": addr
            })

            print(f"βœ… Matched {count} books to '{pub.title()}' in {year}")

# Write to JSON File 
with open("publishers.json", "w") as f:
    json.dump(output_data, f, indent=2)

print(f"\nβœ… Done! {len(output_data)} entries written to publishers.json")

πŸ“„ Processing df_1912.csv for year 1912
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'yorkshire printing co.' β†’ 'simpkin 1' (score: 38.70967741935484)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'g. p. abraham' β†’ 'longmans' (score: 19.047619047619047)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'west strand pub. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'key publ. co.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'anacker' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wieland' β†’ 'wyman' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'fine art trade jnl.' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'i'rowde' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'saunderson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'grant & woods' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'g. w. bacon' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lave' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jarvis & foster' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'weekly telegrapi office' β†’ 'constable ' (score: 24.242424242424242)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'journal of horticulture' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. walker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'taylor & francis' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'orpheus press' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. & j. beck' β†’ 'constable ' (score: 18.181818181818176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'begble (harold)β€”the priest. pop. edit. cr. 8vo., pp. 442, is. net........hodder & s.' β†’ 'hutchinson' (score: 14.893617021276595)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'moody' β†’ 'milford' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'theosophical pub. soc.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'national library of wales' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'max' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'netherton & worth' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'institute of chemistry' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'ess' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'cian' β†’ 'macmillan' (score: 61.53846153846154)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(halifax) milner' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'the co-mason' β†’ 'heinemann' (score: 47.61904761904761)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bright' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bright' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'on' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'nat. poultry organisation' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'ii. kimpton' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'c. thurnam' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'educational co. of ireland' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scorr, greenwood' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'peacock, mansfield' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(hull) a. brown' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'se' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'brozel' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'free trade union' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'holbrook' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dey' β†’ 'wyman' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'liberation society' β†’ 'hutchinson' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'rivers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stan ud' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'rs' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ford' β†’ 'milford' (score: 72.72727272727273)
❌ No strong match: 'lls & b.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'lls & b.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. press' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'internat. assoc. of antiq. booksellers' β†’ 'constable ' (score: 29.166666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'reeves & turner' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'museum arts & letters' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'student volunteer missionary union' β†’ 'heinemann' (score: 32.55813953488372)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'pennington' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'sheppard' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'reformatory & refuge union' β†’ 'methuen' (score: 30.303030303030297)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'morgan & scott' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'colliery guardian' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'co-partnership publishers' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. robinson' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'national conservative union' β†’ 'constable ' (score: 37.83783783783784)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'theosophist' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'textile mercury' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. giles' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'phillipson & golder' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'mawson, swan & m.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sealy, b.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'british esperanto assoc.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'funk & wagnalls' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'seale' β†’ 'constable ' (score: 53.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. m. power' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wieland' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'wieland' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'curtis gardner' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gall & inglis' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. r. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. t. lang' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. davis' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'funk & wagnalls' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'roy. artillery inst.' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, elder' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'central campaign com.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'tuin' β†’ 'unwin' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'igong' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'museum arts & letters' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'pegasus press' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'g. a. poynder' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'kent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'govt. printing off.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'canton house' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nat. council free ch.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'egypt explor. soc.' β†’ 'milford' (score: 24.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nat. council free ch.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(kendal) wilson' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hughes & son' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'grant' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. h. inglis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. baxendine' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'milner' β†’ 'milford' (score: 61.53846153846154)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. j. glaisher' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'women's industr. counc.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'eden fisher' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'downey' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'the fleet, i,td.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'forbes' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'priv. pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gamage' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's.e. agricultural coll.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'beal' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. paui.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'macdonald & l.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'n. rodger' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodgetts' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'university hall' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. f. harnden' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(edin.) w. brown' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nationΓ‘t. councit.' β†’ 'hutchinson' (score: 35.71428571428571)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churciiill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. fruin' β†’ 'unwin' (score: 46.15384615384615)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. henderson' β†’ 'heinemann' (score: 47.61904761904761)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'suth, e.' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'fr e' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'rosemount press' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'nl'rray' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'o. hammerstein' β†’ 'methuen' (score: 47.61904761904761)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. sutton' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jacques & son' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gale & polden' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pear tree pr.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'pear tree pr.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. camp' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. j. arnold & son' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. camp' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h. camp' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lucy & birch' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'health and strength' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'west strand pub. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'electrician' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'warse' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'maxwick' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'seale' β†’ 'constable ' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. j. james' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'charles & dible' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lawlors' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'tollit & harvey' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'milner ; e. j. & j. henryson' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. stanford' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'normal press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. robinson' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'cirl'rchill' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'farncombe' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'cossar' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'journal of commerce' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. stanford' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. c. williams' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'w. southwood' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'directories' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'j. l. warner' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sherlock' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(durham) caldcleugh' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. l. warner' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hanna & neale' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bryce' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gurney & jackson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daly' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. t. lang' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. lewis' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'b. quaritch' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'j. hogg; a. lewis' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'local govt. press' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'cartwright' β†’ 'unwin' (score: 26.66666666666667)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h. good' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'herald print. office' β†’ 'heinemann' (score: 34.48275862068966)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'leng' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ellis' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lillicrap' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. barker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'asher' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. s.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. sutton' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. correspondence coll.' β†’ 'cassell' (score: 30.303030303030297)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camd. univ. press' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sell' β†’ 'cassell' (score: 72.72727272727273)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'liberal insurance committee' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'thin' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'holden & hardingham' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. t. lang' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'i.ow' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'b. f. steevens' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'r. e. king' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'macniven & w.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nat. fire brigades' union' β†’ 'heinemann' (score: 29.411764705882348)
❌ No strong match: 'macniven & w.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'keener' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sherman, french' β†’ 'heinemann' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'barber' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dicks' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'minchin & gibbs' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'methodist book room' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'wesleyan methodist book rm.' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. wright; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: '(hull) a. brown' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'herbert & daniel' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'missel press' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'c. jones' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'daily post and mercury' β†’ 'macmillan' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morgan & scott' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ewart symons' β†’ 'wyman' (score: 47.05882352941176)
❌ No strong match: 'health & strength' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'horticultural printing co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. matilews' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'p. lindley' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'irish unionist alliance' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & boyd' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bibliographical soc.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'laundry journal' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'church monthly' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. sherlock' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'straker' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'cuthbert press' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'itarrap' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'alston rivers' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'lund' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'national society' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mecredy, percy' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'perry' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. mansfield' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'p. lund' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. c. phillips' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sphere & tatler' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gall & inglis' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'woodlands pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'seigle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'oldfields' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h. cox' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'poultry press' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'critchley parker; pitman' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'liudder & s.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'm. southwell' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'keener' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'eugenics educ. soc. ; dulau' β†’ 'methuen' (score: 23.529411764705888)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'wallis & son' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'railway magazine' β†’ 'wyman' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'crystal press' β†’ 'constable ' (score: 52.17391304347826)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'butterwortii' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'times book club' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stean' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'marchant' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. e. cornish' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'burroughs & watts' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'needham' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nicholson-smith' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'newberry & pickerinc' β†’ 'unwin' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'merritt & h.' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 't. wilson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'financier and bullionist' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. c. caton' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'st. catherive press' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'curtis & davison' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'keener' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'letts' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. southwood' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'i'rowde' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: '(edinburgh) scottish oceanographical laboratory' β†’ 'heinemann' (score: 21.42857142857143)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. bourne' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sell' β†’ 'cassell' (score: 72.72727272727273)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(century press) j. & j. bennett' β†’ 'methuen' (score: 26.315789473684216)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: '"speaker's library” press' β†’ 'simpkin 1' (score: 29.411764705882348)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'doves press' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'metilen' β†’ 'methuen' (score: 71.42857142857143)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'doves press' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'doves press' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'u'ywix' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(hull) a. brown' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. e. rogers' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ellis' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. wright; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'asher' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackheath press' β†’ 'methuen' (score: 34.78260869565217)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'a. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'women writers' suffrage league' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'holbrook' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spalding' β†’ 'simpkin 1' (score: 47.05882352941176)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'h. f. lynch' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'watson lyall' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'meyer' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'h. f. johnson' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'w. h. peckitt' β†’ 'simpkin 1' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'h. camp' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gov. printing office' β†’ 'simpkin 1' (score: 27.586206896551722)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'sprague' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'davis & m.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'g. b. moore' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'era' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'u. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. h. smith & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sunrise pubg. co.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'aeronautical publications' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'tariff reform league' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'tariff reform league' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'pennington' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. halewood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nat. transport workers' federation' β†’ 'simpkin 1' (score: 23.25581395348837)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dean's rag bk. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hill & dale' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'liverpool sch, of tropical medicine' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whitehead' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'charles & dible' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bonnaire' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. b. meyer' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'warner' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'brendon' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'walch' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'woodall, minshall' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. e. cornish' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'h. young & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maritime review' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'philip, son & nephew' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'times book club' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'weldon' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morgan & scott' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'crowther & goodman' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'macdonald & evans' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'world's hotel blue book, ltd.' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wilson & witworth' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'the museum' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'r. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. thurnam' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'sherlock' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nat. union of women workers' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'e. s. fowler' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. m. society' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'world's hotel blue book, ltd.' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'maclaren' β†’ 'macmillan' (score: 70.58823529411764)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 't. burleigh' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'national society' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'r. j. james' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. hopwood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
βœ… Matched 366 books to 'Wyman' in 1912
βœ… Matched 450 books to 'Macmillan' in 1912
βœ… Matched 295 books to 'Longmans' in 1912
βœ… Matched 213 books to 'Methuen' in 1912
βœ… Matched 203 books to 'Constable ' in 1912
⚠️ Skipping 'simpkin 1' in 1912 due to missing lat/lon
⚠️ Skipping 'cassell' in 1912 due to missing lat/lon
⚠️ Skipping 'unwin' in 1912 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1912 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1912 due to missing lat/lon

πŸ“„ Processing df_1913.csv for year 1913
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'free trade union' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paui.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lawrence & jellicoe' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mining magazine' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'live stock journal' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'goupil' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allen (g. w.)' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'a. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'united kingdom alliance' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'max goschen' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'meth. publ. house' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'standard pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'knapp, drewett' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'austin & sons' β†’ 'hutchinson' (score: 60.86956521739131)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nat. labour press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nat. labour press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lockwood pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'dawson & sons' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'wyllie' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wheeler' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ledger' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'weare' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bright' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'fine art trade journal' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'the speaker's library " press' β†’ 'simpkin 1' (score: 26.315789473684216)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. w. bacon' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'local govmt. jnl.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(edinburgh) bartholomew' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r. carruthers' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. walker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr), milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill & son' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'eden fisher' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'order of the golden age' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'educational pub. co.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'roberts & jackson' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'f. j. cattermole' β†’ 'cassell' (score: 34.78260869565217)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'city press' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nat. anti-vaccination league' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'roger & rennick' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'contractors' & engineers' publ.' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'birchall' β†’ 'cassell' (score: 53.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ly' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'ian' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'llv' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'man' β†’ 'wyman' (score: 75.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'cith' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'science reviews' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'urne' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'kwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(oxford univ. press), frowde' β†’ 'milford' (score: 22.857142857142854)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'netherton & worth' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ess' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'mans' β†’ 'wyman' (score: 66.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. rutherford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'press' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'siegel, h.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'ng' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rper' β†’ 'milford' (score: 18.181818181818176)
❌ No strong match: 'pevt' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mpkin' β†’ 'simpkin 1' (score: 71.42857142857143)
❌ No strong match: 'smiths' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'i. matiiews' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'reeves & t.' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bayley & ferguson' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'univ. press' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'braithwaite' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'p. geddes' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'gordon hotels ltd.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'rd' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'lly' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'cmillav' β†’ 'macmillan' (score: 75.0)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'bright & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bemrose' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'encyclop. britannica co.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'ell' β†’ 'cassell' (score: 60.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'ner, d.' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mcqueen' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'er' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'ill' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ill' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'iun' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'ford' β†’ 'milford' (score: 72.72727272727273)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'univ. press' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'univ. press' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'univ. press' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'wesley & s.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'f. sherlock' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'manson' β†’ 'longmans' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ys' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lin' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'burnham' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell, fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pottery gazette' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'internat. correspondence schools' β†’ 'heinemann' (score: 29.268292682926834)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'w. d. hayward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'caddies aid committee' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'power book co.' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'nat. com. for prevention of destitution' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'm. ii. gill' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. i,. angold' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'reeves & t.' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'roffey & clark' β†’ 'macmillan' (score: 26.086956521739136)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. cox' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'manchester courier' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'china inland mission' β†’ 'hutchinson' (score: 46.666666666666664)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'i'rowde' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sheppard' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clarke (g. h.) and murray (c. j.)--a grammar of the german language. 2nd edit. cr. 8vo. 74 x5}, pp. 412, 55. camb. univ. press' β†’ 'longmans' (score: 10.447761194029848)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. & r. holmes' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'walbrook' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'co-operative wholesale soc.' β†’ 'constable ' (score: 37.83783783783784)
❌ No strong match: 'e. w. cole' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. w. cole' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. w. cole' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: '(melbourne) cole' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'duffy' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. catherine press' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'food & cookery' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'home words' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'charles & dible' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ham-' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camborne printing co.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'mccaw, stevenson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ralph, h.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'seale' β†’ 'constable ' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'nat. soc. for prev. of cruelty to children' β†’ 'hutchinson' (score: 23.076923076923073)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'alfred blackshaw & sons' β†’ 'macmillan' (score: 31.25)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'cunliffe' β†’ 'unwin' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'dairy farmers' association (british)' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'school of silence' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'school of silence' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chas. letts' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rudd' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'public library' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'smith, elder' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ballantyne, hanson' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. h. stockwell' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siecle. ii.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stent' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hunter, watson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. j. hay' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'national press agency' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'malthusian league' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'cuala press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'national society' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lawlors, ltd.' β†’ 'milford' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'caxton pubg. co.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'locke ellis' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. h. inglis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'g. h. inglis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'a. c. caton' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'young people's miss. movement' β†’ 'longmans' (score: 27.027027027027028)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'univin' β†’ 'unwin' (score: 72.72727272727273)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. sherlock' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'max goschen' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. lloyd' β†’ 'milford' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. thurnam' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. g. commin' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'elijah johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'berners press' β†’ 'heinemann' (score: 27.27272727272727)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'land union' β†’ 'unwin' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h. h. g. grattan' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'land union journal' β†’ 'hutchinson' (score: 35.71428571428571)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gall & inglis' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'ewart, s.' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'ewart, s.' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lincoln record soc.' β†’ 'milford' (score: 38.46153846153846)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'butterwortii' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sheffield indep. press' β†’ 'simpkin 1' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mitchell's advert. agency' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dick & fitzgerald' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'i, u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'j. e. hawkins' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'p. geddes' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'p. geddes' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'austin' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hewetson' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ormiston & glass' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'cambridge univ. press' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'max goschen' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'ward' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'ward' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'a gardxer' β†’ 'milford' (score: 25.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. tait' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. stewart' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dorset county chronicle' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. pulman' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rowney' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ballantyne' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putney press' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. evans & sons' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'imperial maritime league' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'carmona & baker' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'm. h. gill & sons, ltd.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nat. anti-vaccination league' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lorimer & chalmers' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'treherne' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'northend' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. fleming' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'daily chronicle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'comtelburo' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. hellmann' β†’ 'heinemann' (score: 60.0)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'n. rodger' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hammond' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. & r. holmes' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bath corporation' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'marconi press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'internat. prohibition conf.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. m. phillips' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'is' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ralph, h.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'ralph, h.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'new spalding club' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'doncaster chronicle' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'taylor, garnett' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'taylor, garnett' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'saxton' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chappell' β†’ 'cassell' (score: 66.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'electrician' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'holbrook' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'w. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. swift' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ductsworth' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'operative jewish converts' institution' β†’ 'hutchinson' (score: 29.166666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'eland bros.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'kentish express' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'grafton galleries' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'barber' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'corporation' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'reeves & turner' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'boyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'whittingham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'japan gazette' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jewish chronicle” office' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dawson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(adelaide) johns' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'morland press' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '1. arnold' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sherlock' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bedford press' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'tillotson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'freedom press' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w. h. smith & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'simkix' β†’ 'simpkin 1' (score: 66.66666666666667)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 't. nelson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. lewis' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'cartwright' β†’ 'unwin' (score: 26.66666666666667)
❌ No strong match: 'cartwright' β†’ 'unwin' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'h. muirhead' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'leng' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'secret commiss. and bribery prevention league' β†’ 'constable ' (score: 25.454545454545453)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'alton' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. s. lincoln' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'marples' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lloyd's weekly news' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. e. francis' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lakher pioneer mission' β†’ 'heinemann' (score: 45.16129032258065)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'anglo-american technical co.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'financial rev. of reviews' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sell' β†’ 'cassell' (score: 72.72727272727273)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h. b. saxton' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. ouseley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lyceum press' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'oxford univ. pr.' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dext' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'gresiam publ. co.' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'maclaren' β†’ 'macmillan' (score: 70.58823529411764)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. & r. holmes' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'tiarrap' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. literary agency' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'connoisseur' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r. mcclure' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'b. quaritch' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'young people's miss. movement' β†’ 'longmans' (score: 27.027027027027028)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. j. beatty' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'j. thin' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'j. thin' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. & j. f. meehan' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. hellmann' β†’ 'heinemann' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. hellmann' β†’ 'heinemann' (score: 60.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'power book co.' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lindley-jones' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'methodist book room' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: '(middle temple) masters of the bench' β†’ 'methuen' (score: 27.906976744186053)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'olipiant' β†’ 'simpkin 1' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stead's publ, house' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'truth' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'm. h. gill; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'wertheimer, lea' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bailey & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray & evenden' β†’ 'methuen' (score: 34.78260869565217)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(rome) loescher' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'draper's record' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'a. h. stockwell' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. g. madgwick' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'n.-china daily news' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'motor transport council' β†’ 'macmillan' (score: 31.25)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'young people's miss. movement' β†’ 'longmans' (score: 27.027027027027028)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'more ress' β†’ 'milford' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nat. gallery' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nat. gallery of brit, art' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'nat. gallery of brit, art' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'nat. port. gallery' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'harrison trust' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's. catherine press' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smiths' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'rowney' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'l w. newman' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'players' company' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'rosemount press' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sheppard' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'goupil' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. lindley' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. atkinson' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrods' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ballin' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'ballin' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'eng. church union' β†’ 'hutchinson' (score: 51.85185185185186)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kentish express' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'oxonian press' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(oxford) holywell press' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'reeves & turner' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. pankhurst' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. robinson' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c.e.t.s.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sherlock' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e., dent' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'patent office' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'harris & mills' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'young people's miss. movement' β†’ 'longmans' (score: 27.027027027027028)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'darling' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stokeld' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. lund' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wieland' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. mazin' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r. mazin' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lawlors' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'leadeniall press' β†’ 'cassell' (score: 34.78260869565217)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'eason' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'a. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'post office' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'herbert & d.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'h. l. angold' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h. l. angold' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'federation of master printers' β†’ 'longmans' (score: 32.432432432432435)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'record newspaper' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 't. j. s. gu'ilford' β†’ 'milford' (score: 48.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'n. thomson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. j. glaisher' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gerrards' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'truslove & hanson' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. rangecroft' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dobson, molle' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'macdonald & evans' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(edinburgh) hillside press' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jewish converts' inst.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'g. e. over' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stevens & brown' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. e. cornish' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'seecer' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stepney press' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'oxford univ. pr.' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'national leag. for phys. educ' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'siegle, ii.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. cromwell' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'polsue' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'goose & son' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. kempster' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'charles & dible' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. michael' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gas world' β†’ 'milford' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'smith, elder' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gibson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. h. keys' β†’ 'methuen' (score: 23.529411764705888)
❌ No strong match: 'leather trades review' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, ii.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'shearer' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'ham-smith' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(hull) a. brown & sons' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jones & evans' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'charles & dible' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'max goschen' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'new spalding club' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'hillingdon press' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'j. ritchie' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'national labour pr.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'e. chronicle' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'u. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'peacock, mansfield' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'spark' β†’ 'simpkin 1' (score: 42.85714285714286)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. h. stockwell' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'stacpoole (margaret)β€”monte carlo.' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'p. naumann' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'shaw & sons ; butterworth' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'success pub. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'marine publications agency' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'normal press' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hunter & longhurst' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'reid' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. a. pennington' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thomas (w. beach) and collet (a. k.)' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daily post' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'thomson (g. sutherland)-british and colonial dairying: for school, farm and factory.' β†’ 'hutchinson' (score: 19.14893617021277)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'h. logan' β†’ 'longmans' (score: 62.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'barber' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'tingle.' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. tomlin' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hayman, christy' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bonnaire' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hayman, christy' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bonnaire' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wallsgrove press' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'myers' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'oliver & boyd' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'butterwortii' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'buyers & sellers' pub.' β†’ 'cassell' (score: 34.48275862068966)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. newnes' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. stewart' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'b. diver' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'anti-socialist union' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'crowther & goodman' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. sutton' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 't. n. foulis' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'goschen' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'c. j. thynne' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. & g. wells' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jackson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'cope & fenwick' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. mullan' β†’ 'wyman' (score: 57.14285714285714)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hotel tariff bureau' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. tamblyn' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. culley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. j. glaisher' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'imperial maritime league' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. paui.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'cuala press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. a. young' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'electrician' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'rebman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
βœ… Matched 155 books to 'Milford' in 1913
βœ… Matched 639 books to 'Wyman' in 1913
βœ… Matched 352 books to 'Macmillan' in 1913
βœ… Matched 249 books to 'Longmans' in 1913
βœ… Matched 215 books to 'Methuen' in 1913
βœ… Matched 223 books to 'Constable ' in 1913
⚠️ Skipping 'simpkin 1' in 1913 due to missing lat/lon
⚠️ Skipping 'cassell' in 1913 due to missing lat/lon
⚠️ Skipping 'unwin' in 1913 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1913 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1913 due to missing lat/lon

πŸ“„ Processing df_1914.csv for year 1914
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. koch' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'wimax' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lecture agency' β†’ 'methuen' (score: 47.61904761904761)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'darling' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'world's evangelical alliance' β†’ 'macmillan' (score: 32.432432432432435)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duty and discipline move.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'anglo-russian trust' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dest' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'holness' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bemrose' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'electrician' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 't. kirby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'f. h. ayres' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'g. w. bacon' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'priv. printed' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'w. stead' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'f. c. ballin' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'marconi press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'walbrook' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'clarke & sachell' β†’ 'cassell' (score: 52.17391304347826)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'cope & fenwick' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'truslove & bray' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. l':iv. press' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ell' β†’ 'cassell' (score: 60.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'browne & nolan' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'national library of wales' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'u.c.m.e.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'barber' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. b. saxton' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newyes' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'oldfields' β†’ 'milford' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'iredale & son' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'brewing trade rev."; butterworth' β†’ 'constable ' (score: 23.809523809523814)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'u. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'health and strength' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'fuller, hart' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'n. rodger' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'thuex' β†’ 'methuen' (score: 66.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'truslove & hanson' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'bradbury, agnew' β†’ 'wyman' (score: 30.000000000000004)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'd. j. rider' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'suth, e.' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dext' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 't. fraser' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sheppard' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'd. wyllie' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. e. jones' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'circhill' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'roy. colonial inst.' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gowans & gray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'i'rowde' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. edwards ; h. rees' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l v. fowler' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'tΓ­odder & s.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'ball' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'textile mercury' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. r. allenson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'c. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. i hilip' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'intelligence office' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. walker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'univin' β†’ 'unwin' (score: 72.72727272727273)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. li. stockwell' β†’ 'cassell' (score: 43.47826086956522)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'w. southwood' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. j. glaisher' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chancery lane press' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'elliot' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'the museum' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hadden, best' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. schirmer' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'sviti, e.' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'siegle, ii.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'penfold' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dwelly' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'daily herald' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'l.ippiscott' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'e. mayne' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'brindley & howe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. davis' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'st. john ambulance' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mou'bray' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r tick' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ledger' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'a. c. caton' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr), milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. sherlock' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'leisure hour' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'brindley & howe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. thurnam' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'goschen' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blades' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ch'ambfrs' β†’ 'milford' (score: 37.5)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'northern printeries' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'holden & hardingham' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'goschen' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'fleet, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'east & west' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chess news agency' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dobson, molle' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smiths' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'a. clayton' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. w. shaw' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'β€œexport world"' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'anglo-german publ. co.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gale & polden' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'macl' hose' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. tillyer' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'b. f. stevens & brown' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'b. f. stevens & brown' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'goupil' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(yale univ. press) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen' β†’ 'macmillan' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. e. raynbird' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'davidson' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'g. w. bacon' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'trend' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'oliver & boyd' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'daily news & leader' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'eaton press' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. harwood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'pictorial newspaper co.' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'milner' β†’ 'milford' (score: 61.53846153846154)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'dryden pr.' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'hernan' β†’ 'heinemann' (score: 66.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'i long' β†’ 'longmans' (score: 57.14285714285714)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ball' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'w. & a. k. jouxston' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'w. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. h. bullen' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'methi'ex' β†’ 'methuen' (score: 66.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sufrratt & h.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'investors' guardian' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'a. c. fifield' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'tropical agric. develop. agency' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'johnson & sanderson' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'browne & nolan ; wyman' β†’ 'wyman' (score: 37.03703703703704)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'dexter press' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'irish farming world' β†’ 'milford' (score: 38.46153846153846)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'merry-thought press' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'p. & g. wells' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(oxford) blackwell' β†’ 'milford' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dest' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sports & sportsmen' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'v.c. : j. clarke' β†’ 'cassell' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'w. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'm. h. gill ; longmans' β†’ 'longmans' (score: 55.172413793103445)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. koch' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'selfridge' β†’ 'milford' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dest' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luny's tours ltd.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. camp' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly, directories' β†’ 'milford' (score: 24.0)
❌ No strong match: 'kelly's dirt stories' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'kelway' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. t. heron' β†’ 'methuen' (score: 55.55555555555556)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: '" yachting monthly' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. ashley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'n. rodger' β†’ 'milford' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. lunn' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. e. owens' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'sell' β†’ 'cassell' (score: 72.72727272727273)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lucy & birch' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burnside' β†’ 'unwin' (score: 46.15384615384615)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'muirhead' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'wm. lyon' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'r. s. cartwright' β†’ 'unwin' (score: 19.047619047619047)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. cox' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'blackfriars pr.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'byles' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hewetson' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r. e. jones' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'priv. printed' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sch. of tropical medicine' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. ashley' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'local govt. journal' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newyes' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. cook' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'port of london authority' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'l.c.c.' β†’ 'milford' (score: 15.384615384615385)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'london library' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'british-ilbero-american exchange' β†’ 'heinemann' (score: 34.14634146341463)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mcdougall's' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. d. yeadon' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'cope & fenwick' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'g. schirmer' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'massey' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mather & crowther' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'matiesox' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mi+rray & e.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'educational co. of ireland' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: '(edin.) r. & r. clark' β†’ 'heinemann' (score: 26.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'e. hellmann' β†’ 'heinemann' (score: 60.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'methodist book room' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'middle temple' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'w. p. nimmo' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'a. m. davis' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'a. m. davis' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'w. blackivood' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'n: lsov' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: '(yale univ. press) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. dicks' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'geo. salby' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'tifinemann' β†’ 'heinemann' (score: 73.6842105263158)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'commin' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. dicks' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'laxe' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pike bros.' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'united missionary council' β†’ 'hutchinson' (score: 34.285714285714285)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. schirmer' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nat. gal. of brit. art' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'nat. portrait gal' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. pearsall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s., univ. of london press' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'sell' β†’ 'cassell' (score: 72.72727272727273)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. w. braithwaite' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodnfr&s' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. kimptoy' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sprague' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. h. evans' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'gall & inglis' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gale & polden' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'maunsei.' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon press) frowde' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'macdonald & evans' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. pankhurst' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'w.s.p.u.' β†’ 'simpkin 1' (score: 23.529411764705888)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. & c. mort' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dext' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nitt' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. lund' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chancery lane press' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'perry' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'phillimore' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. c. phillips' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'priory press' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'post office' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'poultry press' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hammond' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'truth' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'n. thomson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'l. h. quin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dawson & sons' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 't. w'. lalrie' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & hardingham' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'heatii, craxton' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'crystal press' β†’ 'constable ' (score: 52.17391304347826)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'reid bros.' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'the collegium' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'browne & nolan' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. pull' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newyes' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. seale' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. latimer' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'a. koch' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'the graphic' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'barrell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'g. e. over' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'w. f. henderson' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(manchester) vegetarian soc.' β†’ 'macmillan' (score: 32.432432432432435)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'for univ. of chicago press by camb. univ. press' β†’ 'longmans' (score: 21.818181818181813)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'macniven & wallace' β†’ 'macmillan' (score: 51.85185185185186)
❌ No strong match: 'scot. agricultural publ. co.' β†’ 'constable ' (score: 36.8421052631579)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'iredale & son' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. h. stockwell' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h. sell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'leng' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jones & evans' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'motor schools' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. g. hammond' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dewar' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. t. bigwood' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'ballantyne' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'olipiant' β†’ 'simpkin 1' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'whitcombe and tombs' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'st. stephen's advtg. agency' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'y.m.c.a.' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'tillotson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesleyan mission' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. f. lynch' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'h. f. lynch' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'the stage' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'philatelic press' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'g. ii. shelley' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'reports digest syndicate' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'tack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: '(southampton) cox & saarland' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'fry's magazine' β†’ 'wyman' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'f. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allman' β†’ 'macmillan' (score: 66.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'food & cookery' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. j. arnold' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'f. s. thacker' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thompson (e. skeffington)-moy o'brien : a tale of irish life. new edit.' β†’ 'constable ' (score: 19.753086419753085)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'gall & inglis' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. & j. gray' β†’ 'longmans' (score: 19.999999999999996)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'financial rev. of reviews' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'tower of london' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'kelly's' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. j. arxold' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hayman, christy' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'a. rivers' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'the museum' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'vict. & albert museum' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'vict. & albert museum' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wallace col.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'horne & son' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. w. shaw' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'daily chronicle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'palestine explor. fd.' β†’ 'milford' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'laughton' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'partridge & love' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hfatji, cranton' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'milner' β†’ 'milford' (score: 61.53846153846154)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'whitehead & miller' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'philatelic circular' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gough house' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hunter & longhurst' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'wilson (archibald)β€”the small landholders' guide' β†’ 'longmans' (score: 25.454545454545453)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'siegle, h.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wadsworth & co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hadlfy' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'lawrence & j.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'brindley & howe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nister' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. j. farncombe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. reiach' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paui.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'inst. of mining eng.' β†’ 'simpkin 1' (score: 34.48275862068966)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'marconi press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'cuala press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'o. schulze' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'm. goschen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
βœ… Matched 283 books to 'Milford' in 1914
βœ… Matched 747 books to 'Wyman' in 1914
βœ… Matched 396 books to 'Macmillan' in 1914
βœ… Matched 254 books to 'Longmans' in 1914
βœ… Matched 184 books to 'Methuen' in 1914
βœ… Matched 187 books to 'Constable ' in 1914
⚠️ Skipping 'simpkin 1' in 1914 due to missing lat/lon
⚠️ Skipping 'cassell' in 1914 due to missing lat/lon
⚠️ Skipping 'unwin' in 1914 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1914 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1914 due to missing lat/lon

πŸ“„ Processing df_1915.csv for year 1915
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'bazaar office' β†’ 'cassell' (score: 19.999999999999996)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'adnitt & naunton' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nat. housing and town planning counc.' β†’ 'hutchinson' (score: 29.78723404255319)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'davidson bros.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'internat. development co.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'comtelburo' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'g. pitman' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mcdougall's' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rea, w. & i.' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarvis & foster' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'brit. empire rev.' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(brighton) treacher' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'rydal pr.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'rivers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'β€œ colour " office' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'alabaster, gatehouse' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'p. p. press' β†’ 'cassell' (score: 22.22222222222222)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ, of chicago pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'wari), l.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'fashions journals guild' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'p. l. warner ; milford' β†’ 'milford' (score: 48.275862068965516)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sisley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'sisley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'west, n.' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'warner' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'j. fagan' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nott' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'macdonald and e.' β†’ 'macmillan' (score: 48.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'the office' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'g. b. philip' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smallholder ” office' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'british drug houses' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'milford, quaritch' β†’ 'milford' (score: 58.33333333333333)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lockwood' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'milford, quaritch' β†’ 'milford' (score: 58.33333333333333)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'homeland league. pr.' β†’ 'heinemann' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bryce' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'cazenove' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'killick and fowler' β†’ 'milford' (score: 40.0)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'f. carl' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nat. counc. y.m.c.a.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'cambridge univ. press' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'christian commonwealti' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'knapp, drewett' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(edinburgh) grant' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'l. u. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'efficiency exchange' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. perry' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'w. perry' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'soc. ss. peter & p.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'un. coun. for missi. educ.' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'technical jls.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sunday school un' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mccaw, stevenson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 't. wall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clerkenwell pr.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'cassio pr.' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'year ik. l'r.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. koch' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'english assn.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'holmes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'liberty hall' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(univ. of chicago pr.) milford' β†’ 'milford' (score: 37.83783783783784)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'saxton' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell & b.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mcdougall's' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bullen' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'inst. of jamaica' β†’ 'macmillan' (score: 31.999999999999996)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'school of silence' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'weekly telegraph' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'united newspapers' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'r. & r. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'vanderwerf' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hunt & clark' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'curwen & h.' β†’ 'unwin' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'sifton, p.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.a.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'society periodicals' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morice' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'marchant, s.' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dobell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dobell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dobell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dod's peerage' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'brendon' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: '(edinburgh) l. bryce' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'cazenove' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'morgan' β†’ 'longmans' (score: 57.14285714285714)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mcdougall's' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hood' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'electrician' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'steven & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'john dick's pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'brit. & foreign unitarian assn.' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 's. r. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'everyman” office' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thos. evans' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ellis' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'a. lewis' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stewart' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'church family newspaper' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'club' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'stainer & bell' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hills' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'suitu, f..' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hills' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'new church pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'fleet, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'wildy & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'e. j. noble' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. vickers' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'g. vickers' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'southwold pr.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cazenove' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nat. council' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. f. harnden' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'spiers' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: '(univ. of chicago pr.) milford' β†’ 'milford' (score: 37.83783783783784)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'p. lund' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'warner' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'n. rodger' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. t. w. dennis' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(paris) bloud & gay' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'king & garrett' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(lincoln) ruddock' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'madgwick' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. wesley & son' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chiswick press' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'barrell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'b. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'page & thomas' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'woodlands pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'graves' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'salmond' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'm. g. collart' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'saxton' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sisley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jac.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'practical pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. m. dobson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'haines' β†’ 'heinemann' (score: 53.333333333333336)
❌ No strong match: 'closes' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'relfe' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'woodlands pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'woodlands pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'tiiynne' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h, g, commix' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'harnden' β†’ 'heinemann' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'di (piymouth) western morning news' β†’ 'heinemann' (score: 27.906976744186053)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'eaton pr.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.; j. brown' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. m. phillips' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'internat. prohibition conf.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hazell, w. & v.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'goschen' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'garden city' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'law times' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. j. hernan' β†’ 'heinemann' (score: 47.61904761904761)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'davidson bros.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'ewart' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapmam& h.' β†’ 'macmillan' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'holness' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'cooke & v.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'cooke & vowles' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cooke & v.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'cooke & vowles' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'elliot' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'b. t. jones' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nat. counc. evang. free church' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'transferred to milford' β†’ 'milford' (score: 48.275862068965516)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'r. h. porter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mcdougall's' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'john bellows' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'billex' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 't. wilson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'davidson bros.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harnden' β†’ 'heinemann' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'birmingham printers' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kenny pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'cambridge u. p.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'eastern pr.' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'managing engineer" ; spon' β†’ 'heinemann' (score: 29.411764705882348)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gunn' β†’ 'unwin' (score: 66.66666666666667)
❌ No strong match: 'ballantyne, hanson' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hampshire house workshops' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'omega workshops' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bellows' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. southwood' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'j. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'a. holness' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'davidson bros.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'kinematograph weekly' β†’ 'heinemann' (score: 34.48275862068966)
❌ No strong match: 'dawson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dobson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'roy. colonial inst.' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'century press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dublin univ. pr.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'argus s. african newspapers' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'burnside' β†’ 'unwin' (score: 46.15384615384615)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'news of the world' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. muirhead' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'seale' β†’ 'constable ' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'morice' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'liberty' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'normal press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'asher' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. a. thompson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spratt's patent' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'baines & s.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'β€œ: journal” pr. office' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(edinburgh) macdonald' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: '(glasgow) cossar' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'e. r. dukf' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'internat. defence league' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'the bookroom' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'macdonald & martin' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'financial mail' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sch. of silence' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. b. wheeler.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'soc. ss. peter & p.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'commin' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'grevel' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'thin' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'spriggs' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'lindley-jones' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jiurray & f.' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sijipkin' β†’ 'simpkin 1' (score: 70.58823529411764)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nat. counc. evang. free church' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'w. h. allen' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'new church pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'bazaar office' β†’ 'cassell' (score: 19.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ewart' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dean's rag bk. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nat. league for physical educ.' β†’ 'milford' (score: 27.027027027027028)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(edinburgh) grant' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ewart, s.' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nat. gal, brit. art.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scp.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'nat. portrait gal' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ben johnson' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mitchell' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sifton, p.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sisley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'norwich public lib.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'rels' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'rivers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'butler & tanner' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'cent. assn. v.t. corps' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'malcolm' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sealy, b.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'east & west, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'galloway & p.' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'sch. of silence' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'caster' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sifton, p.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hughes & son' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'trinity pr.' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bumpus' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'palliser' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'euston pr.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'women's industr. counc.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'patent office' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'macniven & wallace' β†’ 'macmillan' (score: 51.85185185185186)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'goschen' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'christian globe' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'perry' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'w. perry' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hampshire house workshops' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mecredy' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'morgan & higgs' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'c. j. woodford' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sisson & parker' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'law times' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'β€œ field" office' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bi.ades' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bazaar, exchange & mart' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. hooks' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'baines & s.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'architect office' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lynch' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lynch' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'minchin & gibbs' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mod. language pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'clerkenwell pr.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'knapp, drewett' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mrs. d. m. richards' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'practical pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens & haynes' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'g. pitman' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thomasons' β†’ 'longmans' (score: 58.82352941176471)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardnΓ­ p, d.' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'eland' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'eland' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sisley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'club' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'internat. rubber .. exhibition' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'cent. translations institute, ltd.' β†’ 'constable ' (score: 31.818181818181824)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'temple sheen pr.' β†’ 'methuen' (score: 43.47826086956522)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dublin univ. pr.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pomegranate pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'waddington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ralph, h.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lloyd's weekly news' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'east and west' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'business directories' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'sells' β†’ 'cassell' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'settlement pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. g. shaw' β†’ 'longmans' (score: 22.22222222222222)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. f. harnden' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hunter, watson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '21s.' β†’ 'cassell' (score: 18.181818181818176)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'temple sheen pr.' β†’ 'methuen' (score: 43.47826086956522)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'methodist pub. hse.' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'toulmin' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wiley' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bennett' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.i.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. wesley & son' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. wesley & son' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '(univ. of chicago pr.) milford' β†’ 'milford' (score: 37.83783783783784)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'church army bk, rm.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'aldine' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. forman' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'norman, sawyer' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'west, newman' β†’ 'heinemann' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'the stage' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'penrose' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'norwich public lib.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. w. stevens' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stu. christian movement' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'association pr.' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. sulley' β†’ 'methuen' (score: 37.5)
❌ No strong match: 's.s. assn.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'insurance pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'e. george' β†’ 'milford' (score: 25.0)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'drummond' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'downie' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harden & lindsay' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'n. thomson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'joseph johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. c. lothian' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sifton, p.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'killick & fowler' β†’ 'milford' (score: 43.47826086956522)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold; allen & u.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'curtis & d.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'lothian' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'lothian' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hampden pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'hayman, c.' β†’ 'wyman' (score: 53.333333333333336)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'cazenove' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dext' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'warner' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'eng. league, tax, of land values' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'aberystwyth : the library' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'army and navy gaz.' β†’ 'macmillan' (score: 29.629629629629626)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. j. ward' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'st. steven's pr. wΔ·s.' β†’ 'constable ' (score: 25.806451612903224)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hazell, w. & v.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'palestine explor. fd.' β†’ 'milford' (score: 35.71428571428571)
❌ No strong match: 'roy. engineers inst.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bale & d.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holloway' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dawson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sir c. w. leng' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'daily chronicle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'strad office' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'forbes' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'cardiff museum' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'killick & fowler' β†’ 'milford' (score: 43.47826086956522)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'women's farm & garden union' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarvis and foster' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'strad office' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'eastern pr.' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. wisden' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 't. & a. constable' β†’ 'constable ' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'holness' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nat. union of women workers' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'goulden' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'theosopa. pub, co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hills' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bertram wright' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'polsue' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gordon & g.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 's.s. assn.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
βœ… Matched 295 books to 'Milford' in 1915
βœ… Matched 809 books to 'Wyman' in 1915
βœ… Matched 250 books to 'Macmillan' in 1915
βœ… Matched 250 books to 'Longmans' in 1915
βœ… Matched 180 books to 'Methuen' in 1915
βœ… Matched 147 books to 'Constable ' in 1915
⚠️ Skipping 'simpkin 1' in 1915 due to missing lat/lon
⚠️ Skipping 'cassell' in 1915 due to missing lat/lon
⚠️ Skipping 'unwin' in 1915 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1915 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1915 due to missing lat/lon

πŸ“„ Processing df_1916.csv for year 1916
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 't. kirby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thos. agnew' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'adams & son' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'whitby (c. h.)' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'french wounded emerg. fund' β†’ 'methuen' (score: 30.303030303030297)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gieves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'dawson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h. stevenson' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. wilson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'b. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hudson & son' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wisden' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'flood' β†’ 'milford' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'tucker & co.' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'the egoist' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'east & west, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'thornton' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'congrega. union' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. harwood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'norwich public lib.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'southernwood pr.' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'med. assn. for prev. of cancer' β†’ 'macmillan' (score: 25.64102564102564)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bacon's library' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'arthur jackson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. knott' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'macniven & w.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lomax's successors' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'syren and shipping, ltd.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'united newspapers' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'barrell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. & a. constable' β†’ 'constable ' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(newcastle) soc. or Γ‘ntiquaries' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'minchin & gibbs' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'edinburgh univ. pr.' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'walthamstow antiq. soc.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'mitchell, ii. & c.' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bright' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'mayfield pr.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'warrington' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'milford, quaritch' β†’ 'milford' (score: 58.33333333333333)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'morrison & gibb' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'friends' peace com.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. brumwell' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'rivers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'a. livingston' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. wilson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'gordon & g.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'liverpool booksellers co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'picture advertising co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. of e. s.s. inst.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'rosemount pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. hooks' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. thurnam' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. & h. bell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'baskerville pr.' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hall & son' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'cox & sharland' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'gill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'parkinson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hughes's academy' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'clerkenwell pr.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w.e. clegg' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'protestant truth soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'cox's shipping agency' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'anglo-african pub, contractors' β†’ 'longmans' (score: 26.315789473684216)
❌ No strong match: 'friends' peace com.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'design and industries assn.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'omega workshops' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'douglas pepler' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'congrega. union' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congrega. union' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mptauen' β†’ 'methuen' (score: 71.42857142857143)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'co-partnership publishers' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nat. vigilance assn.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. meynell' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'fallon bros. ; longmans' β†’ 'longmans' (score: 51.61290322580645)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. lyal' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'eng. church union' β†’ 'hutchinson' (score: 51.85185185185186)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'west india committee' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: '(liverpool) gledsdale & jennings' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'alfieri' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ΓΊnion of east and west' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. g. humphreys' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'unwin & bale' β†’ 'unwin' (score: 58.82352941176471)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'brit. for. & col. corp.' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'β€œ home words " office' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hewetson' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'empire parl. assn.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackheath pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'angus & robertson' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. w.thornton' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'un. democratic control' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thacker, s.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'russo-brit. trade exchange' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'n.e. rly.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'marchant, s.' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'taylor & francis' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. stevenson' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. o. taylor' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'friends' peace com.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'n. n. lee' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'f. & e. stoneham' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'tyndall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'a, g. bell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'brit. & for. unit. assn.' β†’ 'unwin' (score: 27.586206896551722)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'eason & son' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nat. food reform assn.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stainer & bell' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'army and navy stores' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'palmerston pr.' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'practical pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mudie' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fraser, a.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'nat. council' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gypsy pr.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'rivers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sanderson and clayton' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'j. w. ruddock' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. l. morice' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: '(harvard pr.) milford' β†’ 'milford' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'committee' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'd. field' β†’ 'milford' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'geographia, ltd.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. gill & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'cent. ctte. nat. patriotic organ.' β†’ 'heinemann' (score: 23.809523809523814)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'fraser, a.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'laboratory' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. jaggard' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. w. northend' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. jolly' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: '(southampton) h. m. gilbert' β†’ 'simpkin 1' (score: 27.77777777777778)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. meynell' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mayfield pr.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearce' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'congrega. union' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarendon press' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(liverpool) rockliff bros.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'svyman' β†’ 'wyman' (score: 72.72727272727273)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'f. & d. rowe' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nasii' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frederick h. evans' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'walter hill' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'holyroodhouse' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hatton pr.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. horn, ltd.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'm. nijhoff' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'hugo' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'john bellows' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'council' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'financial rev. of reviews' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. c. mathieson & sons' β†’ 'hutchinson' (score: 43.75)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'w. a. hammond' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'star pub. trust' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. b. andrews' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'barrell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'omega workshops' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'w. glass' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'london directories ltd.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'w. glass' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'english assn.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nat. league for physical educ.' β†’ 'milford' (score: 27.027027027027028)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'kinematograph weekly' β†’ 'heinemann' (score: 34.48275862068966)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. & c. black' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'poke' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'felton' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'workers' league for jewish emancipation' β†’ 'heinemann' (score: 29.166666666666664)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'letts' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'argus s. african newspapers' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'butterwortii' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'grant' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'digby, l.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'w. kidd & sons' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. & j. leighton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'secret com. and bribery prev. league' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'un. newspapers, itd.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'lomax's successors' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'l.-jones & bro.' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'g. schirmer' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. a. thompson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'local govt. journal' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'friends' peace com.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nijhoff; (london) wesley' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'newberry & pickerinc' β†’ 'unwin' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'carlyle pr.' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'v'actier' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'h. snape' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'graham & latham' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'browne & n.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'adlard' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. h. mckenzie' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'j. hedderwick & sons' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'alex. maclaren' β†’ 'macmillan' (score: 52.17391304347826)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'grocott & sherry' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'douglas pepler' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. w. simpson' β†’ 'simpkin 1' (score: 45.45454545454546)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'weekly telegraph' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. & w. chester' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sifton, p.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'muirhead' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'u.c.m.e.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'norman rodger' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'reading museum and art gall.' β†’ 'heinemann' (score: 37.83783783783784)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mitre pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'the institute' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'hughes's academy' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bumpus' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dublin univ. pr.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'scott, learmouth & a.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'j. and w. chester' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'roffey & c.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sullivan bros.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'glasgow school of art' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wm. stevens' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'f. & e. stoneham' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackfriars pr.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'turnbull & s.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'goose & son' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. w. glover' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(bradford) w. byles' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'u.c.m.e.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'bumpus' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'browne & n.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 's. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'elton & brown' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'w. f. henderson' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'u.c.m.e.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'jacques & son' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'g. schirmer' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'century pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'imray, l.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wilson & phillips' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'doherty' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'perry' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lund' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. barker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'goulding' β†’ 'unwin' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hazell' β†’ 'cassell' (score: 61.53846153846154)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ruskin college' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'martin & stuart' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarroi.d' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'league of peace and freedom' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. miles' β†’ 'milford' (score: 40.0)
❌ No strong match: 'poultry press' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'unwin ; bale & d.' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kensit' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'β€œ weekly report" invest, dept.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. tiranti' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'davis & m.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'simmons & waters' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'land & water,”' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'fine art soc.' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'fine arts' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. stevenson' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'the sportsman' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'railway magazine' β†’ 'wyman' (score: 47.61904761904761)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'st. martin's pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. s. paine' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'path pub. co.' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'congrega. union' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'herald office' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'oxford univ. pr.' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'r. clay' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'baynard pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'palmer, newbould' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'stud. christian move.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'parker; kimpton' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'walter judd' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.a.c.' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. s. marshall' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'roberts' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. winmill' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chester' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(oxford) alden' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(liverpool) hugh evans' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'patriotic food league' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ralph, h.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'year book press' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. woolley' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'committee' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lynwood' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'business directories' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'geo. w. jones' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(harvard pr.) milford' β†’ 'milford' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sheldons, ltd.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'taylor & francis' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duffy' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'sloan-duployan office' β†’ 'longmans' (score: 34.48275862068966)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: '(hitchin) w. carling' β†’ 'hutchinson' (score: 46.666666666666664)
❌ No strong match: 'bale & d.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hazell, w. & v.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'birdsall & son' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'l.b. & s.c.r.' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. j. larby' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'munro & co.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. gouda quint' β†’ 'unwin' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lynch' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'the stage' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'teachers and taught' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'asher' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'butterworth & shaw' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hills' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittingham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: '(dublin) university pr.' β†’ 'longmans' (score: 25.806451612903224)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'deighton, b.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'unwin & bale' β†’ 'unwin' (score: 58.82352941176471)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'drake, driver' β†’ 'heinemann' (score: 27.27272727272727)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'groom' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(llanbedrog) author' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'orphans' pr.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stpress' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'scientific press' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nat. union of women workers' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. p. booker' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'nat. league for physical educ.' β†’ 'milford' (score: 27.027027027027028)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold; allen & u.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. h. keys' β†’ 'methuen' (score: 23.529411764705888)
❌ No strong match: 'hispania, ltd.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'university pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'muirhead' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'alabaster, g.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'generation pr.' β†’ 'heinemann' (score: 43.47826086956522)
❌ No strong match: 'iris pub. co.' β†’ 'simpkin 1' (score: 27.27272727272727)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iris pub. co.' β†’ 'simpkin 1' (score: 27.27272727272727)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: '(oxford) blackwell' β†’ 'milford' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'the library' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'walford' β†’ 'milford' (score: 71.42857142857143)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daily journal. pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(h.m.s.o.) wyman' β†’ 'wyman' (score: 47.61904761904761)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffiths' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hedderwick' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'turnbull & s.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'moorgate pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pr. priv. for the cutlers' company' β†’ 'heinemann' (score: 27.906976744186053)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'weldons, ltd.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. whitby & son' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'e. whitby & son' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'e. whitby & son' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hopkins & w.' β†’ 'simpkin 1' (score: 47.61904761904761)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'edge & moy' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. fleming' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'denny' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jacob & johnson' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. george & sons' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'star pub. trust' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hiorns & miller' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'jackson & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'allen & u.; fabian soc.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'the author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. jubb' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bertram wright' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
βœ… Matched 223 books to 'Milford' in 1916
βœ… Matched 432 books to 'Wyman' in 1916
βœ… Matched 257 books to 'Macmillan' in 1916
βœ… Matched 215 books to 'Longmans' in 1916
βœ… Matched 128 books to 'Methuen' in 1916
βœ… Matched 138 books to 'Constable ' in 1916
⚠️ Skipping 'simpkin 1' in 1916 due to missing lat/lon
⚠️ Skipping 'cassell' in 1916 due to missing lat/lon
⚠️ Skipping 'unwin' in 1916 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1916 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1916 due to missing lat/lon

πŸ“„ Processing df_1917.csv for year 1917
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'l'au'l' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'douglas & f.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bd. of agriculture' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maclure, macdonald' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'colour, ltd.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. j. banks' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'β€œ western mail,” ltd.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'internat. development co.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j aurie' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'blackfriars pr.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'brit. ambulance ctte.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'british-american overseas field hospital' β†’ 'cassell' (score: 29.78723404255319)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'university college' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. howes' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. richmond' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'poole & pembirton' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'carey press' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst and b.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. j. bryce ; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'meiklejohn' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'camb. univ. i'r.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'boll (a. h.)' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'medical assn. for prevention of cancer' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. t. heron' β†’ 'methuen' (score: 55.55555555555556)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'skeppington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. birmingham' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. stevenson' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'brunswick pr.' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'land union' β†’ 'unwin' (score: 53.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bristol times & mirror' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'morien' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'karslake' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'cisseli.' β†’ 'cassell' (score: 66.66666666666667)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. knott' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'manchester faith pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'criterion pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'musson book co.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mitchell, hughes & c.' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'press art school' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. & w. chester' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'phillipson & golder' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'milford ; quaritcii' β†’ 'milford' (score: 53.84615384615385)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'field and queen' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paui.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. mcqueen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'j. e. phillips' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'university pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. b. darley' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pickering & i. ; holness' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bureau of commerce and industries' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. k. morton' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'j. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'liverpool booksellers co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pictorial newspaper co.' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'carnegie u.k. trust' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'waterlow & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. kenning' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. maclerose' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'china inland mission' β†’ 'hutchinson' (score: 46.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. s.ockwood' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'church assn.' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'clark's college' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'financial news' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clerkenwell pr.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'salvation army' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. p. spalding' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. miles' β†’ 'milford' (score: 40.0)
❌ No strong match: 't. audel' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'burns and o.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'a. j. pelton' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'g. e. over' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'english assn.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. h. gill ; longmans' β†’ 'longmans' (score: 55.172413793103445)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thin' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'scripture gift mission' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spiritualists' national union' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'powell pr.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camden pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'garden life pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'tugeve & co.' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. north' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'refs' β†’ 'milford' (score: 18.181818181818176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'brash bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'london devonian assn.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hong kong pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'paine' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'eastern pr.' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hazell, watson & v.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. a. thompson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. k. morton' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gieves pub. co. ; hogg' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dutton's nat. business college' β†’ 'constable ' (score: 35.0)
❌ No strong match: 'dutton's nat. business college' β†’ 'constable ' (score: 35.0)
❌ No strong match: 'e. dwelly' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'dwelly' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'jackson & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'workers' educa. assn.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'alabaster, gatehouse' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'egoist, ltd.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'nat, herb growing assn.' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'morgan & hoadley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'english assn.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'english jersey cattle soc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maclaren' β†’ 'macmillan' (score: 70.58823529411764)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'two worlds pubg. co.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'thomas evans' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thomas evans' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'alexander gardner' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hewetson' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'wright & hoggard' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'financier & bullionist' β†’ 'macmillan' (score: 38.70967741935484)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'feathered world' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'feathered world' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'h. stevenson' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'humanitarian league' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'w. k. morton' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'herald & walker' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'free chcrch council' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'marshall's sch. of cookery' β†’ 'milford' (score: 30.303030303030297)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(oxford) ruskin college' β†’ 'simpkin 1' (score: 31.25)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'smiths' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'norman rodger' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. thom' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'weatherby' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. wyllie & son' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'gillard's' β†’ 'milford' (score: 50.0)
❌ No strong match: 'gillard's' β†’ 'milford' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'westali. & co.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'u.c.m.e.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'st. bride's press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. gregory' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia, ltd.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'geographia, ltd.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'geographia, ltd.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. e. phillips' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(pontypridd) morien' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wadsworth' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'shandon printing works' β†’ 'simpkin 1' (score: 32.25806451612904)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'higginbothams' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'red triangle pr.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'unwin & bale' β†’ 'unwin' (score: 58.82352941176471)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'grellier' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'alexander gardner' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jakeman & carver' β†’ 'macmillan' (score: 31.999999999999996)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'edward fargher' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'victoria league' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'burns & 0.; mathews' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '"dover express,"' β†’ 'constable ' (score: 23.076923076923073)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan & sons' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'egoist, ltd.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'buck brcs.' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sullivan bros.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'higginbothams' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'talbot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'editor' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stevens & b.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allman' β†’ 'macmillan' (score: 66.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'shaftesbury soc.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'brit. prisoners of war food, parcels, and clothing fund' β†’ 'heinemann' (score: 18.75)
❌ No strong match: 'christian liter. soc. for india' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'letts' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. f. pain & sons' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'barony pr.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'inst. of automobile engineers' β†’ 'constable ' (score: 41.02564102564102)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'pelican pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. slack' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. & j. leighton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'russo-brit. trade exchange' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'modern astrology" office' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: '(sheffield) leng' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'corrigan & wilson' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'adlard & west newman' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'j. wilkie' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. m. dobson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'lindley-jones & bro.' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'brit. esperanto assn.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'birdsall & son' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'i.. b. hill' β†’ 'macmillan' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'omega workshops' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'w. & j. kennedy' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lotus pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'roberts' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. menzies' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'john murray' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'gordon & gotch' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. a. j. waddington' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'rosemount pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'vietiuev' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'g. souter' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'd. pepler' β†’ 'milford' (score: 25.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'w. parr' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stoneham' β†’ 'longmans' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'w. jenn' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'fulton-manders pub. co.' β†’ 'longmans' (score: 45.16129032258065)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'colour, ltd.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'colour, ltd.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'inst. of automobile engineers' β†’ 'constable ' (score: 41.02564102564102)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. gregory' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'british empire producers' organisation' β†’ 'heinemann' (score: 29.78723404255319)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camden pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'galloway & p.' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'encyclopedia pr.' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'blackfriars pr.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'davis & orioli' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'fabb & tyler' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'v. v. sumfield' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'higginbothams' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'spottiswoode, b.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'mental culture enterprise' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'mental culture enterprise' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'mental culture enterprise' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mental culture enterprise' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'mental culture enterprise' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'first british ambulance unit for italy' β†’ 'constable ' (score: 29.166666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'candle pr.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. j. bryce' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'gill; sullivan bros.' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. j. james' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'athenaeum press' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'duffy' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'barnett printing co.' β†’ 'simpkin 1' (score: 27.586206896551722)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'greenland fishery mus.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. w. simpson' β†’ 'simpkin 1' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mitchell' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'inst. of certificated grocers' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'weekly telegraph' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'east and west' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'home words; j. w. northend' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. wall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 't. wall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'roberts' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'f. c. ballin' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'frederic oppenheim' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackheath pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackheath pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h. g. commin' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '(edinburgh) w. brown' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'c. m. dobson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'c. m. dobson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: 'milford; caxb. univ. pr.' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'encyclopedia pr.' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'voice of greece' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'roston language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. j. adams' β†’ 'cassell' (score: 22.22222222222222)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'johnson & allsopp' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'imperialist pr.' β†’ 'simpkin 1' (score: 41.666666666666664)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. perry' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'belgrave pub. co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'nimmo, hay & m.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'w. kidd' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hazell, w. & v.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pickering & i. ; holness' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(dublin) caudle pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'f. edwards' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. j. day' β†’ 'heinemann' (score: 22.22222222222222)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'co-operative reference library' β†’ 'heinemann' (score: 25.64102564102564)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'spiritualists' national union' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'pie pubcns. ltd.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'higginbothams' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. f. lynch' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'crystai. pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'technical bookshop' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'counc. for study of internat. rela.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stationery off.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'alexander gardner' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'greenland fishery mus.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'j. walker' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'roston language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'brunswick pr.' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'walter judd' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'redway, mann & co.' β†’ 'wyman' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. s. marshall' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ruhleben prisoners' release ctte.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'romanes & son' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(norwich) w. hunt' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: '(norwich) w. hunt' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: '(norwich) w. hunt' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'english zionist federation' β†’ 'heinemann' (score: 34.285714285714285)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humanitarian league' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'philip; (sidmouth) day & bath' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'whitehead bros.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bemrose' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spalding' β†’ 'simpkin 1' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'camb, uniy. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. i'r.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'taylor & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'buckler & webb' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'f. j. parsons, ltd.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'civil service pr.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'artists' illustrators' β†’ 'cassell' (score: 35.71428571428571)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. e. over' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hazell, w. & v.' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'tillotson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 't. f. pain & sons' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'co-partnership publishers' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott, g.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newyes' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'simmons & waters' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'westminster gazette, ltd.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'f. king & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'norwich public lib.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spottiswoode, b.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'butterworth & shaw' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w'estali' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'fricker' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'food and cookery pub. agency' β†’ 'methuen' (score: 22.857142857142854)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'women's internat. league' β†’ 'constable ' (score: 41.17647058823529)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'mayne, boyd' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'home purg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fred. s. thacker' β†’ 'methuen' (score: 34.78260869565217)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seeley, s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'keith, macallister' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'fallon bros.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. rawson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'garden cities and town plan. assn.' β†’ 'macmillan' (score: 27.906976744186053)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'd.w. bardsley' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'times publishing co.' β†’ 'simpkin 1' (score: 41.379310344827594)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'business newspapers, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'scottish country life' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'english zionist federation' β†’ 'heinemann' (score: 34.285714285714285)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'siftox, praed' β†’ 'milford' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pelican pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'voice of greece' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'j. kealey' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'j. e. cornish' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'keys' β†’ 'wyman' (score: 22.22222222222222)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'crowther and goodman' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'duffy ; unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'vacher' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'generation pr.' β†’ 'heinemann' (score: 43.47826086956522)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde & h. & s.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'polsue, ltd.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'near east, ltd.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bissett & son' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nar. food economy league' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stcck' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'f. godden' β†’ 'milford' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'roberts' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'motor training' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'weldon' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'welsh housing & devel. assn.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. & w. chester' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. sutton' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. maclehose' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nat.counc.for combatingvenerealdiseases' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'cent. bd. of missions ; s.p.c.k.' β†’ 'constable ' (score: 23.809523809523814)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'w. byles & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chafuan & h.' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'denny' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'b. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'drawing, ltd.' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'workers' educa. assn.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mcbride, n.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'j. kempster' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'westminster college of chemistry and pharmacy' β†’ 'heinemann' (score: 25.92592592592593)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pie pubcns. ltd.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'johnson & neediam' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'symbolist pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'stevens & b.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'butler & tanner' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'potter & clarke' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'i. pitman' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '1.ane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
βœ… Matched 193 books to 'Milford' in 1917
βœ… Matched 229 books to 'Wyman' in 1917
βœ… Matched 231 books to 'Macmillan' in 1917
βœ… Matched 189 books to 'Longmans' in 1917
βœ… Matched 123 books to 'Methuen' in 1917
βœ… Matched 122 books to 'Constable ' in 1917
⚠️ Skipping 'simpkin 1' in 1917 due to missing lat/lon
⚠️ Skipping 'cassell' in 1917 due to missing lat/lon
⚠️ Skipping 'unwin' in 1917 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1917 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1917 due to missing lat/lon

πŸ“„ Processing df_1918.csv for year 1918
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'j. abbey' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'e. w. abbott' β†’ 'wyman' (score: 23.529411764705888)
❌ No strong match: '"academy architecture” offices' β†’ 'methuen' (score: 27.027027027027028)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stationery off.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aftoplave and general pues, co.' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'douglas & f.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bn, of agriculture' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j 12ac' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'uyw'in' β†’ 'unwin' (score: 72.72727272727273)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'united kingdom alliance' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'ligue patriotique des alsaciens-lorrains' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ralpii, holland' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richard bates' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'kauwsmith ; simpkin' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hcad ey' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'baptist union publ. dept.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'dryden pr.' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'church assn.' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. & g. foyle' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'herald pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. ackrill' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'catholic literature assn.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'westminster press' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'ed. j. burrow ; h. marshall' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. stewart & co' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'cimb, univ. pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sach' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'courier office' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. white & son' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h. w. garbutt' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'caldicott & feltuam' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sir j. soane's museum' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'roberts' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. curwen' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'karslake' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laxe' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'taylor & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. robinson & co.' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'grant' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gowans and g.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'howell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bright' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'eagle, star, and british dominions insurance 10.' β†’ 'simpkin 1' (score: 24.561403508771928)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'brit. medical assn.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'loncm ans ; quaritch ; milford' β†’ 'milford' (score: 37.83783783783784)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'brit. assn. of trade and technical jnls.' β†’ 'cassell' (score: 25.531914893617024)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'science and art of mining office' β†’ 'simpkin 1' (score: 29.268292682926834)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. mcqueen' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'grierson & blake' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'roworth' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. c. curtis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author ; p. marshall' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'barrell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. & a. constable' β†’ 'constable ' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'reynolds' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'saunders & cullingham' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'james' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeppington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'order of st. john of jerusalem' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'simpkin ; thurnam' β†’ 'simpkin 1' (score: 61.53846153846154)
❌ No strong match: '(dunfermline) carnegie u.k. trust' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'carnegiel.k. trust' β†’ 'cassell' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'order of st. john of jerusalem' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: '& h.' β†’ 'methuen' (score: 18.181818181818176)
❌ No strong match: 'efficiency magazine' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'burrow ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'douglas & f. ; simpkin' β†’ 'simpkin 1' (score: 45.16129032258065)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'medici soc. ; p. l. warner' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h. g. commin' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'science and art of mining office' β†’ 'simpkin 1' (score: 29.268292682926834)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bowes & b.; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'medici soc. ; p. l. warner' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'duty and discipline move.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'protestant truth soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'roy. engineers inst.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'duffy' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'theosophical book shop' β†’ 'constable ' (score: 31.25)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allen & u.; fabian research dept.' β†’ 'longmans' (score: 24.390243902439025)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.; fabian research dept.' β†’ 'longmans' (score: 24.390243902439025)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dobson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. gill & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 't. wilson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'theosophical book shop' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'socialist labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'national society's depository' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'reynolds' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'w. bishop' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gowans & gray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. e. clegg ; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. lyal' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'phillipson & golder' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'menzies' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '9.1 tsford' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'browne & n.; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ahmadia movement' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'coultas & volans' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'gieves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'union of east and west; luzac' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'prorstiain' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'james davies' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'beaumont pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'liverpool booksellers co., simpkin' β†’ 'simpkin 1' (score: 32.55813953488372)
❌ No strong match: 'liverpool booksellers co., simpkin' β†’ 'simpkin 1' (score: 32.55813953488372)
❌ No strong match: 'caxton (b.e.a.) pr. & pubg. co.' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. h. gill; sullivan' β†’ 'macmillan' (score: 41.379310344827594)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'beaumont pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'london devonian assn. ; sisipkin' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lipplxcott' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dobell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'thom; simpkin' β†’ 'simpkin 1' (score: 63.63636363636363)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'allen & u.; fabian research dept.' β†’ 'longmans' (score: 24.390243902439025)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'beaumont pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodges, figgis ; longmans' β†’ 'longmans' (score: 48.484848484848484)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'rogers' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'w. hardwick' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'elliot' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. kiek' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'dwelly' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'lockwood pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'morton edgar' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapjian & h.' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'field & queen, ltd.' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. w. frings' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'igockwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'candle pr.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'f' β†’ 'milford' (score: 25.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarvis & f.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. trim' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. j. banks' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'macdonald and martin' β†’ 'macmillan' (score: 41.379310344827594)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'warren ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'warren ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'globe encyclopedia co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dobson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'author ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'author ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: '1.uzac' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. thom' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stationery off.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'gibbings' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jackson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sutton & sons' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'slatter & rose, ltd.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'keys' β†’ 'wyman' (score: 22.22222222222222)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'cheshire publishing co.' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'd. field' β†’ 'milford' (score: 40.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'rixon & arnold' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'assn. of brit. advertising agents' β†’ 'longmans' (score: 29.268292682926834)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sir c. w. leng' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'simpkin ; (calcutta) hilton' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'simpkin ; (calcutta) hilton' β†’ 'simpkin 1' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'taylor & francis' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'soldiers' & sailors' families assn.' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'andover standard, &c., pr. & pubg. co.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ormiston & glass' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pickering & i. ; holness' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'catholic social guild' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'world's evangelical alliance' β†’ 'macmillan' (score: 32.432432432432435)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'eugenics educa. soc.' β†’ 'methuen' (score: 29.629629629629626)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gay & hancock' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nat. free church council' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'palestine ho.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. greenwcod's sons' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam ; talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam ; talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam ; talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'putnam ; talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam ; talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'new church pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'holness' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'grippin' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'world's evangelical alliance' β†’ 'macmillan' (score: 32.432432432432435)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'j. w. butcher' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'crowther & goodman' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'american e.f., y.m.c.a.' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'downie' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'st. john ambulance' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'leonard danielson' β†’ 'longmans' (score: 48.0)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'english church union' β†’ 'hutchinson' (score: 46.666666666666664)
❌ No strong match: 'c. birchall, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'morgan and s.' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wright ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'charles' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'charles' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dolby bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. thornley & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skeppington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'menzies' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. w. houghton' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'auctioneers' inst. of the u.k.' β†’ 'constable ' (score: 35.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'turnbull & s.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'n.e.r. land cultivation ctte.' β†’ 'macmillan' (score: 26.315789473684216)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'selwyn' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'unwin & bale' β†’ 'unwin' (score: 58.82352941176471)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'fishing gazette' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. pompa' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'grellier' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'b. m. james' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'near east' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'athenaeum liter. dept.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nat. peace council' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'the ironmonger,"' β†’ 'heinemann' (score: 48.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bennett & thomson' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'charles & son' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'western mail' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'drummond's tract depot' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'j. d. potter ; imray' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. c. walker' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'welshman co.' β†’ 'wyman' (score: 47.05882352941176)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'davis & orioli' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blighty office' β†’ 'heinemann' (score: 26.086956521739136)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'voice of greece' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'east & west, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wali.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lay reader headquarters' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. kidd' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'e. miles' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: '" the people" printing works' β†’ 'heinemann' (score: 27.027027027027028)
❌ No strong match: 'jordan-gaskell' β†’ 'cassell' (score: 47.61904761904761)
❌ No strong match: 'jordan-gaskell' β†’ 'cassell' (score: 47.61904761904761)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. henderson' β†’ 'heinemann' (score: 47.61904761904761)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'vickers, lid.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'jarvis & foster' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'concrete publications' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'james' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'o. f. davies' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'tyrone printing co.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodges, figgis; mccaw, s. & o.' β†’ 'longmans' (score: 26.315789473684216)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bosworth' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. & w. goulding' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'truslove & h.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'northend' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'league of nations ; allen & u.' β†’ 'constable ' (score: 35.0)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'rosemount pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'macdonald & martin' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'thom; j. gibson' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'kidd ; simpkin' β†’ 'simpkin 1' (score: 60.86956521739131)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'soc. internat. de philologie' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'douglas & f.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'w.c. leng' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. j. piper' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. levey' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ellis' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'egoist, ltd.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'library assn.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'library assn.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'authors' advice bureau' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'socialist labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lindley-jones & bro.' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'holmesdale pr.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'armenian information bureau' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. a. thompson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bazaar, exchange & mart' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'saunders' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hume kitchin' β†’ 'hutchinson' (score: 63.63636363636363)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'mrs. rumens' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scottish chronicle' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bazendine' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. r. duke ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'cadib. univ. pr.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'mills and b.' β†’ 'macmillan' (score: 57.14285714285714)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'fraser, asher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'independent newspapers' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'co-op. printing soc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nat.council of the y.m.c.a.' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. & j. manson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hogg' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dean's' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'muirhead' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. j. bryce' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'charles' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'univin' β†’ 'unwin' (score: 72.72727272727273)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'un. counc. for missionary educa.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'grifflv' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'maclehose ; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'garden life pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'fulton-manders pub. co.' β†’ 'longmans' (score: 45.16129032258065)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'shaftesbury soc.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'strength of britain movement' β†’ 'heinemann' (score: 32.432432432432435)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'plymouth printers' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'james' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'nat. free church council' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mawson, swan & morgan' β†’ 'longmans' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'winthrop rogers' β†’ 'unwin' (score: 30.000000000000004)
❌ No strong match: 'thos. evans' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wilson, hartnell & co.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'weekly telegraph' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'g. c. mackay' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'scott & sleeman' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'sullivan bros.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'hall, ltd.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'g. morrish' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarvis & f.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'london spiritualist alliance' β†’ 'constable ' (score: 36.8421052631579)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scott & sleeman' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'catholic social guild' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'roworth' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde and h. & s.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'beaumont' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gurney & j.; oliver & b.' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'empire press union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'beaumont pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'j. brown ; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'goupil' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'g. loosley' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'f. w. count' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lamley' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '20th century pr.' β†’ 'methuen' (score: 34.78260869565217)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heilfy' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'miivsel' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. r. skinner' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 't. roberts' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'oliver & b.; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'h. g. commin' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'a. p. dixon, ltd.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackheath pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'order of woodcraft chivalry' β†’ 'macmillan' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'caster ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'free church of scotland' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'scott & sleeman' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: 'milford ; camb. univ. pr.' β†’ 'milford' (score: 43.75)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'theosophical book shop' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. g. parker' β†’ 'cassell' (score: 21.052631578947366)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scott & sleeman' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'w. j. parrett' β†’ 'wyman' (score: 22.22222222222222)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 't. w. paterson' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'socialist labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'socialist labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w. j. parrett, ltd.' β†’ 'cassell' (score: 23.076923076923073)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pelican pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'g. sherwood' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dext' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'internat. college of chromatics' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. sales' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. maxwell & son' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'italian red cross' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'juiliord' β†’ 'milford' (score: 66.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hazell, watson & v.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'w. f. parrott' β†’ 'wyman' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'whittaker; emmott' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'imray' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'foreign and colonial comp. and pubg. co.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'king & jarrett ; stoneham' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'gieves ; hogg' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jakeman & carver' β†’ 'macmillan' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'internat. school. of practipedics' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. william's pr.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'pie pubcns. ltd.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ligue patriotique des alsaciens-lorrains' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'soc. internat. de philologie' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'd. wyllie' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'crawford & marchmont' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'sealy, bryers' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'charles' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blades' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r. jackson ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'northern daily telegraph' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'weekly telegraph' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'roy. deaf and dumb inst.' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hirschfeld bros.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'richard gill' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'judd' β†’ 'unwin' (score: 22.22222222222222)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'd. j. clark' β†’ 'macmillan' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'adams bros. & shardlow' β†’ 'milford' (score: 27.586206896551722)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hunt' β†’ 'methuen' (score: 54.54545454545454)
❌ No strong match: 'church assn.' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'kibble' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'c. r. moody' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'mayne, boyd' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'times book club' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'l. mundy' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(brit. academy) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. r. courtney' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. r. courtney' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mendip pr.' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british science guild' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'macniven & w.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lockwood pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'justit" studio' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'english assn.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'food and cookery pub. agency' β†’ 'methuen' (score: 22.857142857142854)
❌ No strong match: 'food and cookery pub. agency' β†’ 'methuen' (score: 22.857142857142854)
❌ No strong match: 'food and cookery pub. agency' β†’ 'methuen' (score: 22.857142857142854)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'order of woodcraft chivalry' β†’ 'macmillan' (score: 22.22222222222222)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. b. tattersall, ltd.' β†’ 'cassell' (score: 27.586206896551722)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'constable ; talbot pr.' β†’ 'constable ' (score: 62.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'northenil; s.p.c.k.' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'ward maritime pr.' β†’ 'wyman' (score: 27.27272727272727)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'thin' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'alden ; simpkin' β†’ 'simpkin 1' (score: 58.33333333333333)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 't. price' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'iredale ; simpkin' β†’ 'simpkin 1' (score: 53.84615384615385)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'theosophical book shop' β†’ 'constable ' (score: 31.25)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'civil service pr.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'aberdeen daily journal' β†’ 'milford' (score: 27.586206896551722)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ford' β†’ 'milford' (score: 72.72727272727273)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'roy. engineers inst.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'l. w. andrews' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hazell, watson & v.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'roy. geographical soc.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'n. thomson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sherren' β†’ 'heinemann' (score: 50.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'furnival pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'pain & sons' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'army pay office' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'i.ynch' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'w. spurrell; (london) simpkin' β†’ 'simpkin 1' (score: 36.8421052631579)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'c. goodall & son' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'aircraft' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. j. banks' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'john gower' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'john gower' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. shepherd' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. shepherd' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'brendon' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'saunders' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'new church pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'butterworth & shaw' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward maritime pr.' β†’ 'wyman' (score: 27.27272727272727)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'iredale ; simpkin' β†’ 'simpkin 1' (score: 53.84615384615385)
❌ No strong match: 'thin' β†’ 'hutchinson' (score: 57.14285714285714)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'alden ; simpkin' β†’ 'simpkin 1' (score: 58.33333333333333)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 't. price' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 't.e.singleton' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'theosophical book shop' β†’ 'constable ' (score: 31.25)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'civil service pr.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: '" times" printing works' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mayne, boyd' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown ; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'metchim & son' β†’ 'hutchinson' (score: 60.86956521739131)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'athenbum literature dept.' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'anglo-russian pr. service' β†’ 'longmans' (score: 30.303030303030297)
❌ No strong match: 'harden bros. & lindsay' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'teachers' christian union' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'knight' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'j. horn, ltd.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'iieadley' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'french gallery' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman and h.' β†’ 'heinemann' (score: 43.47826086956522)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jackson & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'london scottish regimental gazette' β†’ 'constable ' (score: 31.818181818181824)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarrold; allen & u.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'a. reid; g. philip' β†’ 'cassell' (score: 24.0)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'muirhead' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'garden cities and town plan. assn.' β†’ 'macmillan' (score: 27.906976744186053)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'london press exchange' β†’ 'longmans' (score: 34.48275862068966)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'manchester univ. pr.' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scottish chronicle' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.a.m.c. magazine' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'winthrop rogers' β†’ 'unwin' (score: 30.000000000000004)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. a. j. waddington' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'marsitali. pros.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'maclure, macdonald' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'c. h. kelly' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dobson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 't. s. swale' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. s. swale' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pepler' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'quaritch ; unwin' β†’ 'unwin' (score: 47.61904761904761)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burroughs, wellcome' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'reeder & walsh' β†’ 'heinemann' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'roy. drawing soc.' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'β€œ birmingham daily post,"' β†’ 'longmans' (score: 30.303030303030297)
❌ No strong match: 'order of woodcraft chivalry' β†’ 'macmillan' (score: 22.22222222222222)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'order of woodcraft chivalry' β†’ 'macmillan' (score: 22.22222222222222)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'un, ctte. for tax, of land values' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'un, ctte. for tax, of land values' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'un, ctte. for tax, of land values' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'un. cttt. for tax. of land values' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. h. harris' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'strength of britain movement' β†’ 'heinemann' (score: 32.432432432432435)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. c. curtis ; milford' β†’ 'milford' (score: 48.275862068965516)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'j. a. d. bridger' β†’ 'constable ' (score: 23.076923076923073)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'browne & n.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'annathwaite' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'nat. labour press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pillans & wilson' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'f. j. parsons' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pie publications, ltd.' β†’ 'simpkin 1' (score: 32.25806451612904)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'blackheath pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'thornton ; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'jackson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'free church of scotland' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'spon ; simpkin' β†’ 'simpkin 1' (score: 60.86956521739131)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thomas evans' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'c. birchall, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'london mercantile chamber, i,td.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'richmond' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'g. woolley' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. griffin' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman and h.' β†’ 'heinemann' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'city kotteriet' β†’ 'constable ' (score: 33.333333333333336)
βœ… Matched 252 books to 'Milford' in 1918
βœ… Matched 144 books to 'Macmillan' in 1918
βœ… Matched 126 books to 'Longmans' in 1918
βœ… Matched 78 books to 'Methuen' in 1918
βœ… Matched 108 books to 'Constable ' in 1918
⚠️ Skipping 'simpkin 1' in 1918 due to missing lat/lon
⚠️ Skipping 'cassell' in 1918 due to missing lat/lon
⚠️ Skipping 'unwin' in 1918 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1918 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1918 due to missing lat/lon

πŸ“„ Processing df_1919.csv for year 1919
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.s.p.b.' β†’ 'simpkin 1' (score: 23.529411764705888)
❌ No strong match: 'harnden' β†’ 'heinemann' (score: 50.0)
❌ No strong match: '(leeds) e. j. arnold' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'colour, ltd.; rolls ho. pubg. co.' β†’ 'constable ' (score: 23.25581395348837)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'estates gazette"; sweet & m.' β†’ 'constable ' (score: 26.315789473684216)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'aeroplane & gen. pubg. co.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cross-atlantic newsp. service, ltd.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bd. of agriculture' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ainsley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cecil palmer' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'egoist,' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'egoist, ltd.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'the egoist' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'little, brown' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'alexander' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cable printing & pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer; simpkin' β†’ 'simpkin 1' (score: 58.33333333333333)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'raggett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'labour research dept.; allen & u.' β†’ 'constable ' (score: 32.55813953488372)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'chas. joscelyne' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'r.i.b.a.' β†’ 'macmillan' (score: 23.529411764705888)
❌ No strong match: 'r.i.b.a.' β†’ 'macmillan' (score: 23.529411764705888)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'd. g. begg' β†’ 'constable ' (score: 19.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fertiliser manufacturers' assn.' β†’ 'heinemann' (score: 35.0)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'colour' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '"yachting monthly"; h. riach' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'glaziers' company' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kenny pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'church crafts league' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'automobile assoc.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'ryl. automobile club' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'roy. aeronautical soc.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'rolls house pubg. co.' β†’ 'constable ' (score: 25.806451612903224)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bannell' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'baptist union' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bell & bain' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'jowett & sowry' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'holborn pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'burrow ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'little, brown' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'madgwick, houlston' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '(harrogate) r. ackrill' β†’ 'macmillan' (score: 32.25806451612904)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'modern language pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'roy. artillery inst.' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. & g. baird, ltd.' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marples & co; (175, piccadilly, w. 1) zionist organisation' β†’ 'macmillan' (score: 23.880597014925375)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'goodall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ed. j. burrow ; h. marshall' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'commonwealth off.' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: '"vigilante" office' β†’ 'macmillan' (score: 29.629629629629626)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'p. h. hulbert' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 't. kildsey' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'gall & i.' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'e. j. burrow; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. b. bliss' β†’ 'cassell' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'smallholders' union' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'w. & g. foyle' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'robertson; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heffer & sons' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'novello & hutchinson' β†’ 'hutchinson' (score: 66.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bright & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'periodical pubg. co.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'eagle, star & brit. dom. insurance co.' β†’ 'simpkin 1' (score: 25.531914893617024)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british museum; milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(glasgow) j. brown' β†’ 'milford' (score: 24.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'insurance pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'dodge pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'dodge pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'twentieth century pr.' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'grierson & blake' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'brit. hospitals assoc.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'w. wesley & son' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'trigonometrical survey' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chas. j. thynne' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'wesleyan conf. off.' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pictorial newspaper co.' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'canada weekly' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'canada weekly' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'cassell & co.' β†’ 'cassell' (score: 70.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'simpkin ; thurnam' β†’ 'simpkin 1' (score: 61.53846153846154)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(preston) g. toulmin & sons' β†’ 'longmans' (score: 34.285714285714285)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'm. c. macleod' β†’ 'milford' (score: 40.0)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. j. price' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'greenway' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. chirm' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'oxford univ. pr.' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'church assoc.' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'city temple' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'inst. of civil eng.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sawyer' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'w. thornley & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'maggs bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spottiswoode, b.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'e. h. flvy' β†’ 'methuen' (score: 23.529411764705888)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: '(darlington) w. dresser & sons' β†’ 'longmans' (score: 26.315789473684216)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'boxing offices' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'waterlow & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'warren ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national unionist assoc.' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'co-partnership publishers' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'london: irish folk-song soc.' β†’ 'longmans' (score: 27.77777777777778)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'educational pub. co.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pubg. co.' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'archibald sinclair' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'cycling"; larby' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dakin method' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. stock; r. scott' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'indo-british assn.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'leopold b. hill' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'siebe, gorman' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'ryl. artillery inst.' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'missionary lit. supply' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sands & co.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. w. bayley' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'angus & robertson' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'london devonian assoc. ; simpkin' β†’ 'simpkin 1' (score: 34.14634146341463)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dodge pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'eason; simpkin' β†’ 'simpkin 1' (score: 60.86956521739131)
❌ No strong match: 'thornton butterworth' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'paris book club; simpkin' β†’ 'simpkin 1' (score: 42.42424242424242)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'imp. british-israel assn.' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'cursitor pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dod's peerage, ltd.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'selwyn' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'soc. of dorset men' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: '"waterford news,"' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(s. paul) greening' β†’ 'unwin' (score: 34.78260869565217)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'philip dale' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hadden, best' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. dwelly' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gillam's commercial agencies' β†’ 'macmillan' (score: 37.83783783783784)
❌ No strong match: 'lockwood pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: '(edin- burgh) w. green' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'roy. colonial inst.' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. sach & co.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '"times" printg. co.' β†’ 'simpkin 1' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'mowbray, sept.; lippincott' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. h. tyndall; simpkin' β†’ 'simpkin 1' (score: 45.16129032258065)
❌ No strong match: 'dodge pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'dodge pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sanitary pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'geo. philip' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'era" office' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. & g. foyle' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'the egoist' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'missionary lit. soc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(cheltenham) banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'besley & copp' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'erskine macdonald' β†’ 'heinemann' (score: 53.84615384615385)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nat. food reform assn.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. i,eng' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'new guinea mission' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rees' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'club' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'menzies' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'anglo-hellenic league' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'fieldhouse ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'war narratives pubg. co.' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '"the times " pubg. co.' β†’ 'hutchinson' (score: 31.25)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'o.u.p.; milford' β†’ 'milford' (score: 63.63636363636363)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'geographia, ltd.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'eagle printing works' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. william's pr.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heffer & sons' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'east & west, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'grant richards' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'caxton pubg. co.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'layton' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'workers' educa. assn.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'handicrafts, ltd.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'fry & morrison' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'brit. fire prevention ctte.' β†’ 'simpkin 1' (score: 27.77777777777778)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. j. banks' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'ovid pr.' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'supt. of govt. printing' β†’ 'hutchinson' (score: 30.303030303030297)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'g. gill & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pickering and inglis' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'friars printg. assoc.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: '(dublin) talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'spink & son' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. w. whitehead' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'frederick hall' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. harwood; simpkin' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 't. and t. clark' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. speaight & sons' β†’ 'hutchinson' (score: 35.71428571428571)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesleyan conf. off.' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wall' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'a. reid; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'geo. philip' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'a. j. kibble' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'the gale & p.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gresham pr.' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. f. henderson' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'satchell & son' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'freedom assn.' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'money market review' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'police review pubg. co.' β†’ 'constable ' (score: 24.242424242424242)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '"the guardian,"' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'm. buckley & sons' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'church missionary soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 't. n. foulis' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'brit. pictorial press co.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 't. m. sparks' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 't. m. sparks' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 't. m. sparks' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 't. m. sparks' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'downie' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'federation of master printers' β†’ 'longmans' (score: 32.432432432432435)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'london ctte. of unredeemed greeks' β†’ 'longmans' (score: 24.390243902439025)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bridge' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bridge & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'r. davis' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dover print. & pubg. co.' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jews' college' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mutual life insur. co. of new york' β†’ 'hutchinson' (score: 31.818181818181824)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'weekes' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'farncombe' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'brit. inst. of industrial art' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'joseph johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'madgwick, houlston' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. j. james' β†’ 'methuen' (score: 22.22222222222222)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chorley & pickersgill' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'war narratives pubg. co.' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'trigonometrical survey' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'church mission soc.' β†’ 'hutchinson' (score: 55.172413793103445)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'internat. trades exhib.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. williamson co.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'r. ward & sons' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'f. c. mathieson & sons' β†’ 'hutchinson' (score: 43.75)
❌ No strong match: 'f. c. mathieson & sons' β†’ 'hutchinson' (score: 43.75)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stamp collecting' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'dodge pubg.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shakespeare press' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'tofts' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bd. of deputies of brit. jews' β†’ 'hutchinson' (score: 25.64102564102564)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'welsh outlook pr.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'o.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. f. henderson' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'roworth' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'adam holger' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. & g. foyle' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(yale univ. press) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sullivan bros.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. duffy' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'darien pr.' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'leopold b. hill' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'kinematograph pub. co.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jordan-gaskell' β†’ 'cassell' (score: 47.61904761904761)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'beck' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'beck' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'carlton pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'boxing offices' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'girl's own paper' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'tillotson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stechert' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'central library' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'indep. labour party' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'co-operative ptg. soc.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mitchell, hughes & clarke' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cahill & co.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'educ. co. of ireland' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'london soc. for prom. christianity amongst jews' β†’ 'longmans' (score: 25.454545454545453)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'reid' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'school of optics' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'poor law publications' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'theosophical publ. ho.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'twentieth cent. pr.' β†’ 'methuen' (score: 38.46153846153846)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'c.m.s.; student christian movement' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: '"modern astrology"; fowler' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lever bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'the challenge' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'leng' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'herder' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'central church ctte' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lever bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'w. bishop' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'eng. zionist federation' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'liberal publication dept.' β†’ 'macmillan' (score: 29.411764705882348)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lincoln' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'werner laurie' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. j. farncombe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'love & malcolmson' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'love & malcolmson' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harper bros.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'invicta agency' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'r. gibson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'star pub. trust' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. e. cornish' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'protestant truth soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'fishing gazette' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'aeroplane & gen. pubg. co.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'church missionary soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'martin lester' β†’ 'milford' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. g. pullinger' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. baxendine' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gresham pubg. co.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'society for the prev. and relief of cancer' β†’ 'constable ' (score: 26.923076923076927)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'martin lester' β†’ 'milford' (score: 40.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nat. currency league' β†’ 'methuen' (score: 29.629629629629626)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'northern friends' peace bd.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'n. ling' β†’ 'unwin' (score: 50.0)
❌ No strong match: '(sydney) dymock’s book arcade' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dymock's book arcade' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'colour' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'freemasons' hall' β†’ 'cassell' (score: 43.47826086956522)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'owen bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'roffey & clarke; simpkin' β†’ 'simpkin 1' (score: 42.42424242424242)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 's. e. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'middleton' β†’ 'milford' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'walter ruck' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'frank foster; heywood' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'melville' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'philatelic institute' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'philatelic institute' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'thin; simpkin' β†’ 'simpkin 1' (score: 63.63636363636363)
❌ No strong match: 'hesperia pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'armenian bureau' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 'mcara & whiteman' β†’ 'heinemann' (score: 48.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lindley-jones' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'w. fitton' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'institute of metals' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'metropolitan ry.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'e. j. burrow; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'st. oswald pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'hudson & stracey' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r. robinson & co., ltd.' β†’ 'hutchinson' (score: 30.303030303030297)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nat. labour press' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'g. t. barton' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. dicks pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'boxing offices' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'palmer & hayward' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nat. food reform assn.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'english assoc.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'jamieson & munro' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clifton pubg. house' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: '"the motor"; larby' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mudie's library' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'mudie's library' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. seaton & co.' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(glasgow) w. hodge' β†’ 'milford' (score: 24.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'albany pr.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'nasmith' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'Δ…. h. stride' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'govt. book depot' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'brit. phrenological soc.' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'st. catherine's pr.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'mitchell' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'darien pr.' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. w. faulkner' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. warden' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'martin lester' β†’ 'milford' (score: 40.0)
❌ No strong match: 'martin lester' β†’ 'milford' (score: 40.0)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maj. d. h. steers' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'govt. printing off.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. a. vidler' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(talbot pr.) t. f. unwin' β†’ 'unwin' (score: 34.48275862068966)
❌ No strong match: 'martin lester' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hilton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'heath robinson & birch' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford; camb. u. pr.' β†’ 'milford' (score: 31.818181818181824)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: '(oxford) parker' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'norman w. henley pubg. co.; lockwood' β†’ 'heinemann' (score: 22.22222222222222)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'baxter's press' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'parliament h.m. stationery off.' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'brit. empire union' β†’ 'simpkin 1' (score: 37.03703703703704)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. albino' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'law times' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'j. & j. paton' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'liverpool booksellers co., simpkin' β†’ 'simpkin 1' (score: 32.55813953488372)
❌ No strong match: 'socialist labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'garden life pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chas. d. clayton' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'e. stanford' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'taylor & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'imray, laurie' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'downie' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. barker & co.; simpkin' β†’ 'simpkin 1' (score: 42.42424242424242)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'greek bur. of foreign inf.' β†’ 'unwin' (score: 25.806451612903224)
❌ No strong match: 'o.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'geo. philip' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: '(oxford) blackwell' β†’ 'milford' (score: 31.999999999999996)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. carswell & son' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. e. may' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. bunyard' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'goose & son' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'batsford (marshall, jones & co.)' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'protestant truth soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'protestant truth soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wright' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'missions to seamen' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gowans & gray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'the egoist' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sanders phillips' β†’ 'cassell' (score: 34.78260869565217)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'women's internat. league' β†’ 'constable ' (score: 41.17647058823529)
❌ No strong match: 'dolby bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'spottiswoode, b.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. b. price' β†’ 'cassell' (score: 22.22222222222222)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'sch.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'g. a. stephen' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. w. grigg & son' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'jack and nelson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'barter's handb.' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'soc. of compar. legistation' β†’ 'macmillan' (score: 27.77777777777778)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'art and letters' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. cate' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'thew' β†’ 'methuen' (score: 54.54545454545454)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bowering & co.' β†’ 'unwin' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ctte. of social investig. & reform' β†’ 'constable ' (score: 31.818181818181824)
❌ No strong match: 'employment exchange' β†’ 'methuen' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'saunders' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's. wales print. & pubg. co.' β†’ 'simpkin 1' (score: 27.77777777777778)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. a. sharp' β†’ 'cassell' (score: 22.22222222222222)
❌ No strong match: 'national labour pr.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'northern daily telegraph' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'charles roberts' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. agnew' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'daily post printers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'h. g. gadney' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'roy. italian geog. soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ross j. clarke' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. king' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'horbury, natzio & co.' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'author; morland' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 'w. judd' β†’ 'wyman' (score: 16.666666666666664)
❌ No strong match: 'kelly's directories ; simpkin' β†’ 'simpkin 1' (score: 36.8421052631579)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'f. h. morland' β†’ 'milford' (score: 40.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'f. t. groom; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'priv. pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'palmer, sutton' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sandow' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. hobson & son' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dingle' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'schoeller (w. r.) and l. b. hill' β†’ 'macmillan' (score: 24.390243902439025)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'holness' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'stead' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'world's best pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sea-pie office' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sells, ltd.' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'food and cookery' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'food and cookery' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'brit. soc. of franciscan studies; manchester univ. pr.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'arlington pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. f. unwin' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'epworth press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. w. northend ; s.p.c.k.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'a. m. gordon' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: '"news" office' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hermetic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'univ. trans. & typewriting bureau' β†’ 'unwin' (score: 26.315789473684216)
❌ No strong match: 'sanders phillips' β†’ 'cassell' (score: 34.78260869565217)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'missionary lit. supply' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'the technical publg. co.' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(ramsgate) sloan-duployan phonography' β†’ 'macmillan' (score: 26.086956521739136)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'poultry world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 't. robinson & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'church crafts league' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'g. e. weir' β†’ 'unwin' (score: 26.66666666666667)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sherren & son' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'c.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seymour' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'seymour' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'seymour' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bolton public lib.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'lynch' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wine & spirit trade record' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(liverpool) h. young' β†’ 'methuen' (score: 29.629629629629626)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dolby bros.; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'roy. statistical soc.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'norwich public lib.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bowes & b.; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'butterworth & shaw' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'turnbull & spears' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(angus & r.) milford' β†’ 'milford' (score: 51.85185185185186)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rodman' β†’ 'longmans' (score: 57.14285714285714)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'sutton; simpkin' β†’ 'simpkin 1' (score: 58.33333333333333)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hy. d. tigwell' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 't. j. wise' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'sunday school un' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'sim & coventry' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'wyndhams' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'huddersfield' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'northumberland pr.' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. spurrell & son' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wesleyan conf. off.' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'werner laurie' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. toulmin & sons' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodgson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'single tax pubg. co., ltd.' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'culverwell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'dept. of social economics' β†’ 'longmans' (score: 30.303030303030297)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'wm. trimble' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(warwick) evans & co.' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'educational co. of ireland' β†’ 'macmillan' (score: 34.285714285714285)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'solicitors' law stationery soc.' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. a. homer' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'eng. league for tax. of land values' β†’ 'milford' (score: 23.809523809523814)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allan & williamson' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. ward' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'neumayer' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'epworth press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'werner laurie' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'r.1.s.' β†’ 'milford' (score: 15.384615384615385)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'judd' β†’ 'unwin' (score: 22.22222222222222)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. p. mathew' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'h. b. saxton' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watkins meter co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'watkins meter co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack and nelson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'northern counties pubg. co.' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'wilding & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'freeman dovaston' β†’ 'heinemann' (score: 48.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'f. j. drake & c.' β†’ 'constable ' (score: 23.076923076923073)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'werner laurie' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 't. kirby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: '2nd l. f. a.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dow & lester' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burlington pubg co.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'belmont' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'young's library' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'athenaeum liter. dept.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'stock' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'swedenborg soc.' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'g. gregory' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'new church pr.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'joseph johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. c. caster' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. j. thynne' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'selwyn' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mcbride' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'willis' camb. univ. pr.' β†’ 'macmillan' (score: 31.25)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nat. peace council' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'putnam's sons' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'warren ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'alfred holness' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '"winning post" offices' β†’ 'simpkin 1' (score: 25.806451612903224)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'richardson & w.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'r. clay & sons' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spottiswoode, b.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'galloway' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'tuck' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'midland educ. co.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'h. h. armstrong' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. g. hammond' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'paul' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'morris modern pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'clement shorter' β†’ 'methuen' (score: 45.45454545454546)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: '" cymro" office' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
βœ… Matched 212 books to 'Milford' in 1919
βœ… Matched 192 books to 'Macmillan' in 1919
βœ… Matched 165 books to 'Longmans' in 1919
βœ… Matched 105 books to 'Methuen' in 1919
βœ… Matched 133 books to 'Constable ' in 1919
⚠️ Skipping 'simpkin 1' in 1919 due to missing lat/lon
⚠️ Skipping 'cassell' in 1919 due to missing lat/lon
⚠️ Skipping 'unwin' in 1919 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1919 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1919 due to missing lat/lon

πŸ“„ Processing df_1920.csv for year 1920
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'eden fisher' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chelsea book club' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'maclehose, jackson' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aeroplane & gen. pubg. co.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'african world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'alden & co.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'the egoist' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. mckelvie' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'machinery pubg. co.' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'w. & w.lindsay' β†’ 'unwin' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'c. j. sawyer' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'michelin & cie.' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn ; pitman' β†’ 'wyman' (score: 43.47826086956522)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'cent. bd. of missions ; s.p.c.k.' β†’ 'constable ' (score: 23.809523809523814)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(houlston), larby' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'cross-atlantic newsp. service, ltd.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '(edinburgh) w. brown' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wheeler & co.; simpkin' β†’ 'simpkin 1' (score: 45.16129032258065)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stamp collecting' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'r. banks' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'milner' β†’ 'milford' (score: 61.53846153846154)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'egoist press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'tyrrell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. h. courville' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.a.c.' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(houghton mifflin) constable' β†’ 'constable ' (score: 47.36842105263158)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'the field pr.' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'brown & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ex-service man,"' β†’ 'heinemann' (score: 48.0)
❌ No strong match: 'the service man,"' β†’ 'heinemann' (score: 53.84615384615385)
❌ No strong match: 'β€œ bystander,”' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'roy. aeronautical soc.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. mortimer' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'innes; simpkin' β†’ 'simpkin 1' (score: 60.86956521739131)
❌ No strong match: 'brit. periodicals' β†’ 'milford' (score: 25.0)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'year book press; deane' β†’ 'cassell' (score: 27.586206896551722)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'baptist union publ. dept.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'barbizon house' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'maclaren & sons' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'co-operative printing soc.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ryl. statistical soc.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'c. f. roworth' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. allen warner' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 'catholic liter. assoc.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'goodall & suddick' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lomax's successors' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'gieves pubg. co.; j. hogg' β†’ 'hutchinson' (score: 22.857142857142854)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'law book co. of australasia' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'kirkstall forge co.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(yale) milford' β†’ 'milford' (score: 66.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'the challenge' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'financial empire,”' β†’ 'macmillan' (score: 29.629629629629626)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allen' β†’ 'macmillan' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mcbride, nast' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nimmo; low' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'adjutant' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'baynard pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(univ. of chicago pr.) milford' β†’ 'milford' (score: 37.83783783783784)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. backus' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'wilmer bros.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'midland educ. co.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'bromhead, cutts' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jackson & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'whelan & son' β†’ 'heinemann' (score: 47.61904761904761)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gieves pubg. co.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rapp & sons' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'south african & col. agency' β†’ 'hutchinson' (score: 37.83783783783784)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'guernsey press co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'city of london book depot' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'negretti & zambra' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'roy. soc. of arts' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: '" cent. somerset gaz."' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'walthamstow antiq. soc.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chelsea book club' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camden pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'henry hook ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'court guide office' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'boyle's court guide' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'f. king & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lakeman & t.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's. brett' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'harvey & healing' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bright & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'bright & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'brit. & for. bible soc.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'eagle, star and brit. dominions' β†’ 'longmans' (score: 25.64102564102564)
❌ No strong match: 'mcgill & smith' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'univ. of lond. pr. ; hodder & s.' β†’ 'milford' (score: 25.64102564102564)
❌ No strong match: '(univ. london pr.) hodder' β†’ 'milford' (score: 31.25)
❌ No strong match: '(univ. london pr.) hodder' β†’ 'milford' (score: 31.25)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hilton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morgan & hoadley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: '(galashiels) mcqueen & son' β†’ 'heinemann' (score: 34.285714285714285)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'twentieth century pr.' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. wall & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'tiranti' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'w. bryce' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'brit.-israel assoc.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'y.w.c.a.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'thurnam' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'browne & n.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'daily journal' β†’ 'milford' (score: 40.0)
❌ No strong match: 'daily journal' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'dartford antiq. soc.' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'welsh housing and develop. assoc.' β†’ 'longmans' (score: 34.14634146341463)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'j. wheldon' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'bryce' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'kemp hall press' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'w. brierley' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'church missionary soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: '(pitman, hart) chirm' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. myers' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'wine and spirit trade record,"' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hunter & l.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'rylett's london secretariat' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'office; heffer' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'colliery guardian' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'brown bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'victoria league' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'hewetson' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newcastle and gateshead incorp, chamber of commerce' β†’ 'constable ' (score: 22.95081967213115)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daily post' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lyal' β†’ 'wyman' (score: 44.44444444444444)
❌ No strong match: 'j. brozel' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'plebs league' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ss. peter and paul' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(exeter) a. wheaton' β†’ 'methuen' (score: 38.46153846153846)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'angus & r.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'assoc. newspapers' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. g. bisset' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'y.w.c.a.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'benn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrollo' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'normal press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(angus & robertson) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'angus & robertson' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. a. walker' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'r. a. walker' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'london devonian assoc. ; simpkin' β†’ 'simpkin 1' (score: 34.14634146341463)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sunday school assoc.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gill & son ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'directory pubg. co.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'swain' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'gay & hancock' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. thin' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '* scottish farm servant,”' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chenil gallery' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dod's peerage' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'dod's peerage' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: '(angus & r.) milford' β†’ 'milford' (score: 51.85185185185186)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'selwyn' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(hawthornden pr.) c. j. sawyer' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'bazaar, exchange & mart' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mamelok pub. co.' β†’ 'macmillan' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hadden, best' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'a.j. wilson & co.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hirschfeld ; kimpton' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'eason & son' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'united methodist pubg. ho.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'egypt explor. soc.' β†’ 'milford' (score: 24.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'robert grant' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'jewish guardian' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ovid press' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. w. jelfs' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'tyndall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'philip gee' β†’ 'simpkin 1' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'alex. thom ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. b. gill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hugh jones' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'thomas evans' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gieves pubg. co.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'macdonald & martin' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'caldecott & feltham' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'roy. photographic soc.' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'skeppington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'eden fisher' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'β€œfinancier,"' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'evans' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'fieldhouse ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'science and art of mining office' β†’ 'simpkin 1' (score: 29.268292682926834)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'scottish co-operative wholesale soc.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'camden pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'labour research dept.' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'h. young' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dickinsons' β†’ 'hutchinson' (score: 60.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'univ. college' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(w. & a. k. johnston) macmillan' β†’ 'macmillan' (score: 44.99999999999999)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'b. f. stevens & brown' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'cable printing & pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'brown & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'r. dunn' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'education' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'underhill' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, c.' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'bazaar, exchange & mart' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'g. toulmin & sons' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'sons of india ; simpkin' β†’ 'simpkin 1' (score: 43.75)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'athenaeum' β†’ 'heinemann' (score: 55.55555555555556)
❌ No strong match: '(southampton) cox & saarland' β†’ 'hutchinson' (score: 31.57894736842105)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'y.w.c.a.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'year book pr.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(g. allen) maunsel' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sells, ltd.' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'w. myers' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'griffin publicity co.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: '* south-eastern gaz.”' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gieves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'workers' educ. assoc.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'andrew elliot' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'billiard house' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holiday annual offices' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'government printing office' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sisson & p.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'translator' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. wright; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: '(angus & r.) milford' β†’ 'milford' (score: 51.85185185185186)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'holborn pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'harnden' β†’ 'heinemann' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lincolnshire pr.' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(northampton) mercury pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'morgan & hoadley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'garden city pr.' β†’ 'longmans' (score: 26.086956521739136)
❌ No strong match: 'police review,”' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'proletarian pr.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. & g. james' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'standard pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'federation of working girls' clubs' β†’ 'simpkin 1' (score: 23.25581395348837)
❌ No strong match: 'science and art op mining' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'wm. lewis ; simpkin' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. pearson' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'y.m.c.a.' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'malay states inform. agency' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'merchants' hall' β†’ 'cassell' (score: 45.45454545454546)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harwood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harwood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pictorial newspaper co.' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mrs. c. heath' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'ralph, holland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'univ. of lond. press' β†’ 'unwin' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bridge & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'chancery lane press' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'bridge' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'john f. shaw' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'jewish guardian' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'macniven & wallace' β†’ 'macmillan' (score: 51.85185185185186)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. h. baldwin & sons' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'a. heywood ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'a. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dover printing & pub. co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. c. curtis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ilippe' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'churchman pubg. co.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'the railway engineer' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'the railway engineer' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'seed & gabbuti' β†’ 'heinemann' (score: 26.086956521739136)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'st. martin's pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(yale) milford' β†’ 'milford' (score: 66.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'd. w. & e. c. horner' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'mccaw, stevenson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'l.c.c.' β†’ 'milford' (score: 15.384615384615385)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'imperial maritime league' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'w. e. harrison' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(alfred hinde), simpkin' β†’ 'simpkin 1' (score: 43.75)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ovid pr.' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'brit., for. & colonial corporation' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'brit., for. & colonial corporation' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'brit., for. & colonial corporation' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 's. b. vaughan' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'educ. co. of ireland' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'smallholding & allotment,' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'fishing gazette' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'brooks pr.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'kentish express' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'times of india' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'garton foundation' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thom' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maclehose ; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. hall & son ; simpkin' β†’ 'simpkin 1' (score: 43.75)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'jones' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'tofts' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'the britons' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'judaic pubg. co.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'decimal assoc.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bazaar, exchange & mart' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'spurrell' β†’ 'cassell' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hulton & co.' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. selwyn' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'brown & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'cope & f.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'kelly's direct.' β†’ 'cassell' (score: 27.27272727272727)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'electrical rev.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'co-operative pr. agency' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'roy. botanic gdns.' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'kinematograph pub. co.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. mark & sons' β†’ 'wyman' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'smith, e.' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. kirkby' β†’ 'milford' (score: 25.0)
❌ No strong match: 'roy. college of physicians' β†’ 'longmans' (score: 29.411764705882348)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'girl's own paper' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'eastern pr.' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'brit. socialist party' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'british museum (n.h.)' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'homeopathic pubg. co.' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories ; simpkin' β†’ 'simpkin 1' (score: 36.8421052631579)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'poor law publications' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'g. w. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jowett & sowry' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'laird & lee' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'town clerk' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'd. wyllie & son' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'foster, groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'jolly & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'crown agent for colonies' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'riso levi; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'riso levi' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'riso levi' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'riso levi' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'stone & cox' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'ovid pr.' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'licensed victuallers' gazette,”' β†’ 'constable ' (score: 39.02439024390244)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'vine pr.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. newnes' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lincolnshire chronicle ; simpkin' β†’ 'simpkin 1' (score: 34.14634146341463)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(angus & r.) milford' β†’ 'milford' (score: 51.85185185185186)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'licensed vict. cent. protection soc.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'liverpool council of voluntary aid' β†’ 'milford' (score: 29.268292682926834)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 't. & a. constable' β†’ 'constable ' (score: 66.66666666666667)
❌ No strong match: 'african world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'luff & sons' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. b. philip & son' β†’ 'hutchinson' (score: 35.71428571428571)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'london museum' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'love & malcolmson' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. j. keliher & co.' β†’ 'methuen' (score: 23.076923076923073)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lakher pioneer mission' β†’ 'heinemann' (score: 45.16129032258065)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'dulau' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'jesson & co.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'watts & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: '(talbot press) unwin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mcdougall's educat. co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'publishers' assoc.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lothian book pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'j. munro; simpkin' β†’ 'simpkin 1' (score: 53.84615384615385)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. smith' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'g. h. dorax' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'maclehose ; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'w. myers' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. allen warner' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'john lane' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'shetland news' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'shetland news' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'country brewers' gaz.,”' β†’ 'constable ' (score: 42.42424242424242)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hermetic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. gill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & donaldson' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'glaisher' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'roy. exchange assurance co.' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'cursitor pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'goodship house' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'univ. lond. press; hodder & s.' β†’ 'milford' (score: 27.027027027027028)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'poor law publications' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hughes & harber' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. & h. bell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'caster & jelley' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mitre pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lindley-jones & co.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'institute' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'thomas evans' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'london & norwich pr.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'michelin tyre co.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'carriers pubg. co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shaw co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'cable print. & pubg.co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. stenhouse ; kimpton' β†’ 'methuen' (score: 34.48275862068966)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrison ; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '(doubleday, page) simpkin' β†’ 'simpkin 1' (score: 41.17647058823529)
❌ No strong match: '(doubleday, page) simpkin' β†’ 'simpkin 1' (score: 41.17647058823529)
❌ No strong match: 'jewish religious union' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'croydon public libraries' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'romance pubg. co.' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'sullivan bros.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'motor training' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'reilly & lee co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'wm. stevens' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. mortimer' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. williamson' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'iliffe & sons' β†’ 'milford' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'temple press' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'danielson' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'municipal journal' β†’ 'milford' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'g. d. ernest & co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whitehead & miller' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hulton & co.' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hari singh & bros.' β†’ 'simpkin 1' (score: 29.629629629629626)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'woodrow & co.' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'eyre & spottiswoode' β†’ 'hutchinson' (score: 27.586206896551722)
❌ No strong match: 'russian liberation ctte.' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'brit. & for. bible soc.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'scripture gift mission' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'w. p. spalding' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'cuarto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'rosemount pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'washbourne' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'l. j. gooding' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(columbia univ. pr.) milford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'goose & son ; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. & h. bell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mary's meadow pr.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'mary's meadow pr.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. hulton' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 't. roberts & co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. duffy & co.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. hulton' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'caster & jelley ; simpkin' β†’ 'simpkin 1' (score: 41.17647058823529)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. and k. johnston ; macmillan' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: '(johnston) macmillan' β†’ 'macmillan' (score: 62.06896551724138)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'parker; milford' β†’ 'milford' (score: 63.63636363636363)
❌ No strong match: 'parker; milford' β†’ 'milford' (score: 63.63636363636363)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker; milford' β†’ 'milford' (score: 63.63636363636363)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(oxford univ. pr.) milford' β†’ 'milford' (score: 42.42424242424242)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'papker ; milford' β†’ 'milford' (score: 60.86956521739131)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'egypt explor. soc.' β†’ 'milford' (score: 24.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g h. doran' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'alliance of honour' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper bros.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'dodd, mead' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'joseph johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 's. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(sons of india, kar, majumder & co.) simpkin' β†’ 'simpkin 1' (score: 26.415094339622648)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'w. h. pobinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'indep. labour party' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'β€œ guardian " office' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gooding' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'patent office' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. j. vince' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'rolls house pubg. co.' β†’ 'constable ' (score: 25.806451612903224)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen' β†’ 'macmillan' (score: 57.14285714285714)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gardeners' chronicle,"' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'john payne soc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nat. peace council' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holborn pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'imray, laurie' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'federation of brit, industries' β†’ 'heinemann' (score: 25.64102564102564)
❌ No strong match: 'co-operative wholesale soc.' β†’ 'constable ' (score: 37.83783783783784)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w.c.o.; epworth pr.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'barker ; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(columbia univ. pr.) milford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sisson & p.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'alden & co.; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. j. burrow & co.' β†’ 'hutchinson' (score: 21.42857142857143)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'β€œ hants advertiser,”' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'h. reiach' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'tempest; foulis' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'playbox annual offices' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'richards' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hubert giles' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'vickery, kyrle & co.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'e. h. courville' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'compiler' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'c. m. dobson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'london central board' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'clarke, nickolls & coombs' β†’ 'cassell' (score: 31.25)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'national council' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'puck offices' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. tiranti' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'punch office' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'punch office' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'queen's college' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'railway gazette' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. parker; pitman' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'crystai. pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'brooks pr.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'reed' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'reed' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'reed' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'welsh outlook pr.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'carmona & baker' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'indep. labour party' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'burns, oates & washbourne' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'waterlow & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'j. f. belmont' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'doran' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. jackson ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'iron & coal trades rev.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. horsnell and h. roberts' β†’ 'longmans' (score: 29.411764705882348)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: '" field & queen,"' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blighty off.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'connoisseur' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camden pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'french' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'lytham' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'w. judd' β†’ 'wyman' (score: 16.666666666666664)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'kelly's directories ; simpkin' β†’ 'simpkin 1' (score: 36.8421052631579)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'gieves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(norwich) w. hunt' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h. w. hunt' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'groom & son; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bromhead, cutts' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bennett college' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bellows' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'east & west; east india assoc.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'robertson' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'bliss' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sea-pie office' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'sea-pie office' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sells, ltd.' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'food and cookery' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'food and cookery' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'editor' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'colour' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'f. g. shaw' β†’ 'longmans' (score: 22.22222222222222)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: '" phonographic observer,"' β†’ 'longmans' (score: 30.303030303030297)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '(oxford) parker' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'macdonald & evans' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'b. hill' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bromhead, cutts' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'roy. statistical soc.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'taylor & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(century co.) unwin' β†’ 'unwin' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'adam holger' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'fountain pubg. co.' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sloan-duployan' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'sloan-duployan hdqtrs.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'smallholder' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'smallholder' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'r. o. bradbury' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ball' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'garden life pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'bristol printers' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hazell, watson' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'i,. parsons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'soane museum' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'p. j. & a. e. dobell' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'c.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'forman & sons' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. a. j. waddington' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'tillotson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'univ. london pr.; hodder & s.' β†’ 'milford' (score: 27.77777777777778)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'reformatory & refuge union' β†’ 'methuen' (score: 30.303030303030297)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'spurrell' β†’ 'cassell' (score: 53.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'the stage' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'connoisseur' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'licensed vict. cent. protection soc.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seeley, serv.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'food and cookery pub. agency' β†’ 'methuen' (score: 22.857142857142854)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dorland agency' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '" hampshire advertiser,"' β†’ 'milford' (score: 25.806451612903224)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'mccaw, stevenson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. simpson & co.' β†’ 'simpkin 1' (score: 48.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mappin & webb' β†’ 'simpkin 1' (score: 45.45454545454546)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'g. g. harrap' β†’ 'longmans' (score: 19.999999999999996)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'maclehose ; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. h. smith & son' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'sutton & sons' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wheldon & co.' β†’ 'methuen' (score: 26.086956521739136)
❌ No strong match: '(columbia univ. pr.) milford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'central board of missions; s.p.c.k.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'aeroplane & gen. pubg. co.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'talbot house settlement' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '" tank corps journal,"' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'railway gazette' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '" echo,"' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: '(china inland mission), morgan & s.' β†’ 'longmans' (score: 32.55813953488372)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(j. alfred sharp) epworth pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nutt' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'miss templer' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'brown' β†’ 'wyman' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'f. s. thacker' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hirschfeld bros.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesleyan methodist book rm.' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h. marshall & son' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. halewood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'werner laurie' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'westall' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. heffer' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'f. & c. palmer' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'vir pubxg. co.' β†’ 'simpkin 1' (score: 26.086956521739136)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. heath robinson' β†’ 'hutchinson' (score: 59.25925925925925)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'leopold b. hill' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'the challenge' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'underhill & co.' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lond. missiony. soc.' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'faulkner' β†’ 'macmillan' (score: 35.29411764705882)
❌ No strong match: 'r.i.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mark & moody; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'church pubg. co.' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'leisure hour' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'de la more press' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'victoria league' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'scott & s.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'v. and a. museum' β†’ 'methuen' (score: 26.086956521739136)
❌ No strong match: 'v. and a. museum' β†’ 'methuen' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'victoria league' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'simpkin (wing & co.)' β†’ 'simpkin 1' (score: 55.172413793103445)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hesperia pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'hesperia pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'neumayer' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'voysey' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'ovid pr.' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'cliftonville pr.' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. waddington' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '" bedford standard,"' β†’ 'milford' (score: 29.629629629629626)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. r. allenson' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'agents por colonies' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'a. & c. black' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniei.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hirschfeld ; kimpton' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bowes bros. ; macmillan' β†’ 'macmillan' (score: 56.25)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'f. r. hockliffe' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nicholson & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bazaar office' β†’ 'cassell' (score: 19.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. lond. press; hodder & s.' β†’ 'milford' (score: 27.027027027027028)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'morland; foyle' β†’ 'milford' (score: 38.095238095238095)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mathews' β†’ 'methuen' (score: 57.14285714285714)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 't. forman & sons' β†’ 'longmans' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '" courant & courier,"' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. hassell & son' β†’ 'cassell' (score: 52.17391304347826)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wesleyan conf. off.' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'valentine & sons' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whitfield & newman' β†’ 'heinemann' (score: 51.85185185185186)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'manchester univ. pr.; longmans, green & co.' β†’ 'longmans' (score: 31.372549019607842)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'athenaeum' β†’ 'heinemann' (score: 55.55555555555556)
❌ No strong match: 'benham & co.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'athenaeum' β†’ 'heinemann' (score: 55.55555555555556)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'compendium pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'maclaren & sons' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bi.ackwood' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'solicitors' law stationery soc.' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'j. johnson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. ricjapds' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hill pubg. co.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'williams pr.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'educ. pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'c. h. ward' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wills & woodnoth ; simpkin' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bfll' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'baptist missiony. soc.' β†’ 'simpkin 1' (score: 32.25806451612904)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'candle pr.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. bush & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: '(columbia univ. pr.) milford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. parker' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'w. j. bryce' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'standard art book co.' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'winning post' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'b. f. stevens & brown' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'playtime” & β€œ wonderland weekly" offices' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marsden & co.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour research dept.' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'midland educ. co.; simpkin' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'cazenove' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'greening' β†’ 'heinemann' (score: 47.05882352941176)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith ; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(glasgow) brown & son' β†’ 'longmans' (score: 27.586206896551722)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'roy. zoological soc.' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
βœ… Matched 377 books to 'Milford' in 1920
βœ… Matched 288 books to 'Macmillan' in 1920
βœ… Matched 174 books to 'Longmans' in 1920
βœ… Matched 190 books to 'Methuen' in 1920
βœ… Matched 147 books to 'Constable ' in 1920
⚠️ Skipping 'simpkin 1' in 1920 due to missing lat/lon
⚠️ Skipping 'cassell' in 1920 due to missing lat/lon
⚠️ Skipping 'unwin' in 1920 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1920 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1920 due to missing lat/lon

πŸ“„ Processing df_1921.csv for year 1921
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'sidney pr.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'central board of missions; s.p.c.k.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'east & west' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'admiralty-pilot books. j. d. potter' β†’ 'milford' (score: 23.809523809523814)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'armenian information bureau' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'epworth press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'macdonald & evans' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'king's cross pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'alden & co.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'alden' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'w. w. bell & co.' β†’ 'cassell' (score: 26.086956521739136)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'little, brown & co.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. m'kelvie & sons' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'united kingdom alliance' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(stirling) e. mackay' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'china inland mission; r.t.s.' β†’ 'hutchinson' (score: 36.8421052631579)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'internat. development co.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'charity organisation soc.; longmans' β†’ 'longmans' (score: 37.2093023255814)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'warren & son; simpkin' β†’ 'simpkin 1' (score: 46.666666666666664)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'colour pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. argles' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lamley & co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'armstrong col.' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'universal pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'aeroplane & gen. pubg. co.' β†’ 'longmans' (score: 23.529411764705888)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. warbeck' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'city lands ctte.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'mercury pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'sports publications' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'vinton & co.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'burt & sons' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wilson & phillips' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'barbizon house' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'd. croal thomson' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'guaranty trust co.' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holywell pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'h. j. glaisher' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'universal pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'sunday school assoc.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'new routledge (k. paul)' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 's. a. warner' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'young's library' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'british sports pubg. co.' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: '(hogarth press) l. & v. woolf' β†’ 'cassell' (score: 27.77777777777778)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sunrise pubg. co.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'middlesex hospital' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'bibby' β†’ 'wyman' (score: 19.999999999999996)
❌ No strong match: 'wh te' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '40, maddox st., w.) l. chaundy' β†’ 'methuen' (score: 27.027027027027028)
❌ No strong match: 'l. chaundy' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'l. chaundy' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'birmingham art gallery' β†’ 'macmillan' (score: 32.25806451612904)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'midland educ. co.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'birmingham public libraries' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mellifont press' β†’ 'milford' (score: 45.45454545454546)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'w. wilson & co.' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. e. stechert' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: '(h. w. wilson) grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'netherton & worth' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'j. falconer' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'central somerset gaz.' β†’ 'constable ' (score: 45.16129032258065)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'kingsgate pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'candle pr.' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'a. w. boon' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'salvation army book dept.' β†’ 'simpkin 1' (score: 29.411764705882348)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: '(h. w. wilson) grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(h. w. wilson) grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'court guide office' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'boyle's court guide' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'blacklock' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'little art rooms' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'epworth press' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'cooper & co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'the builder' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'g. robertson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'brit. & for. bible soc.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'british dominions insurance co.' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'greenwood & co.' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum (n.h.)' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'british science guild' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'gurney & jackson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. b. waters' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bowes & b.; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'benn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. p. mathew' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'suckling' β†’ 'simpkin 1' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'swarthmore pr.; allen & u.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. wall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philip & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'perkin warbeck' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: '(h. w. wilson) grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. russell; t. w. laurie' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'hispanic society of america' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'dolby bros.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'a. brunton' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'f. groom' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'athenaeum liter. dept.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'virtue' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. p. mathew' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. macbean' β†’ 'macmillan' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. & r. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'reeves & turner' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'p. warbeck' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pratt & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman, hart & co.' β†’ 'simpkin 1' (score: 29.629629629629626)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'church army hq.' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'church assoc.' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'w. clowes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'g. f. smith & son' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'p. warbeck; simpkin' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'mystic evolution soc.' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'london literary alliance' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'n.s.s.u.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '"polo monthly,"' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'colchester town council' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'f. a. stokes' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'e. cooper' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'concrete publications' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(dublin) talbot pr.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'coventry f.c. supporters' assoc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'greenock philosophical soc.' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'rounce & wortley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'cricketer syndicate' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'leather trades pubg. co.' β†’ 'methuen' (score: 25.806451612903224)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'adlard & west newman' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'ward & foxlow' β†’ 'wyman' (score: 22.22222222222222)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(manchester) marsden' β†’ 'macmillan' (score: 41.379310344827594)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. & s. livingstone' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'mazin & co.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'bagster' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'daily mirror' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r. silcock' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bachhoffner' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'bookman's journal' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'curwen' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'stevens & sons' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'norman rodger' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'confraternity of divine love' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'leadenhall pr.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. bellows' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'melville & mullen' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. sotheran' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'wessex pr.' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. a. mate' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'r. dinwiddie' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'directory pubg. co.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(dundalk) w. tempest' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hoyten & cole' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'everett' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'soc. of dorset men' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'high peak news & buxton advertiser,"' β†’ 'heinemann' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'w. & r. holmes' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wallace gandy' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'd. douglas' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'f. hodgson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mamelok pub. co.' β†’ 'macmillan' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'hadden, best' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'andrew elliot' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'county advertiser,"' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 't. caldcleugh' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dwelly' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'eason & son' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'luzac & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'caledonian pr.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(edinburgh) constable' β†’ 'constable ' (score: 58.06451612903225)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'j. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'school government chronicle,"' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hughes bros.' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'st. john ambulance' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'confraternity of divine love' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'confraternity of divine love' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'augener' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r. & r. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'tyndall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sanitary pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'n.s.s.u.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'encyclopΓ¦dia britannica' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.e. institute' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'nat. council of the evangelical free churches' β†’ 'constable ' (score: 29.09090909090909)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'imp. bureau of entomology' β†’ 'methuen' (score: 31.25)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'e.c.f.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'donald macbeth' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'j. h. alden' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'eason' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. waterston & sons' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'liverpool courier,"' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.; fabian soc.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dow & l.' β†’ 'constable ' (score: 22.22222222222222)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'melville & mullen' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'f. arnold' β†’ 'milford' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'russian trade delegation' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'goodwin & tabb' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'farmer & stockbreeder' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nat. farmers' union' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'feathered world' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sidney pr.' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nursery training sch.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'internat. psycho-analytical press' β†’ 'constable ' (score: 32.55813953488372)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'p. warbeck' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'fieldhouse' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'alden & co.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'kenny pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 't. maskew miller' β†’ 'macmillan' (score: 48.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'internat. psycho-analytical press' β†’ 'constable ' (score: 32.55813953488372)
❌ No strong match: 'roy. statistical soc.' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'law times' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. thornton; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'forestry commission' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dickinsons' β†’ 'hutchinson' (score: 60.0)
❌ No strong match: 'educ. needlecraft assoc.' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'church missionary soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camden pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cr. unwin' β†’ 'unwin' (score: 71.42857142857143)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: '(w. & a. k. johnston) macmillan' β†’ 'macmillan' (score: 44.99999999999999)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'cobden club' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. lee warner; j. cape' β†’ 'heinemann' (score: 25.806451612903224)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'livingstone pr., morgan & scott' β†’ 'longmans' (score: 35.89743589743589)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'walthamstow antiq. soc.' β†’ 'longmans' (score: 32.25806451612904)
❌ No strong match: 'churchman pubg. co.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. & v. woolf' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gill' β†’ 'macmillan' (score: 46.15384615384615)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'cable pubg. co.' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ryl. williams & n.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mealli & stianti' β†’ 'macmillan' (score: 48.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'gaskell (elizabeth heath, cranton' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'ryl. geographical soc.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. may' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pall mall industrial investments, ltd.' β†’ 'constable ' (score: 29.166666666666664)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'hilton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '" derry standard,"' β†’ 'wyman' (score: 26.086956521739136)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chance & bland' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'symudiad cristionogol y myfywyr' β†’ 'hutchinson' (score: 29.268292682926834)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. page' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. w. palmer' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. s. a.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's. a. warner' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'g. h. robinson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gowans & gray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gieves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'victoria league' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'parkshot pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bowes & b.; macmillan' β†’ 'macmillan' (score: 60.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'a. v. houghton' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'financial news' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'john rylands library' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'ray soc.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pear tree pr.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'denny' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'roy. historical soc.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'science of thought inst.' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'science of thought inst.' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'science of thought inst.' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'w. jolly' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hamilton (m. lynn) (mrs. fetters, and other verses. pp. 70, bds. 4s. 6d. unwin' β†’ 'milford' (score: 16.470588235294116)
❌ No strong match: 'melville & mullen' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'soc. of ss. p. & p.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'watmoughs, ltd.' β†’ 'milford' (score: 27.27272727272727)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'l. h. lefevre' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'kingsley & co.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'central somerset gaz.' β†’ 'constable ' (score: 45.16129032258065)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. pearson' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(w. & a. k. johnston) macmillan' β†’ 'macmillan' (score: 44.99999999999999)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: '5s. r. davis' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'p. warbeck' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'teachers and taught' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'kingsley pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. russell' β†’ 'cassell' (score: 58.82352941176471)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heaton's agency' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'melville & mullen ; j. clarke' β†’ 'methuen' (score: 27.77777777777778)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'echo pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chas. taylor' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'macniven & wallace' β†’ 'macmillan' (score: 51.85185185185186)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'central board of missions; s.p.c.k.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'teachers' guild' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'walter hill' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hollings' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'white (poultry pr.)' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lockwood pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(clarendon pr.) milford' β†’ 'milford' (score: 46.666666666666664)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hazell, watson' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'holborn pubg. house' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'gresham pubg. co.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'w. goldston' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'w. mullar & son' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'china inland mission; r.t.s.' β†’ 'hutchinson' (score: 36.8421052631579)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nisbet & co.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'williamson & co.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'williamson & co.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'b. f. stevens & brown' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'brit. foreign & colonial corp.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'brit. forgn. & colnl. corpn.' β†’ 'constable ' (score: 26.315789473684216)
❌ No strong match: 'brit., for. & colonial corporation' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. stock; r. scott' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'f. carl' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'white' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'waterlow & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodges, f.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'girl's own paper' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. thom' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kenny pr.' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bennett & thomson' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. r. mackintosh' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'c. jack' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dundalgan pr.' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bean & halliday' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'northern pubg. co.' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'jackson' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'macniven & wallace' β†’ 'macmillan' (score: 51.85185185185186)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'far eastern advertising agency' β†’ 'simpkin 1' (score: 25.64102564102564)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: '(ohio) w. h. jeffery co.' β†’ 'milford' (score: 19.354838709677423)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'brit, idistic soc.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'mudie' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 't. gerald o'sullivan' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'jewish chronicle' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'judaic pubg. co.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. & a. k. johnston' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 's.p.g.; s.p.c.k.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '"dover express,"' β†’ 'constable ' (score: 23.076923076923073)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hulton & co.' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'english assoc.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'nat. home reading union' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'girl's own paper' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'internat. labour office' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'a. elliot' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: '(columbia univ. pr.) milford' β†’ 'milford' (score: 40.0)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'tiranti' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'tiranti & co.' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'tiranti' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'schofield & sims' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'tozers' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'orpheus pubg. house, edinburgh' β†’ 'methuen' (score: 27.027027027027028)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 't. skinner & co.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'financial news' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'p. warbeck' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. alban pr.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jowett & sowry' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(humphreys) hatchards' β†’ 'hutchinson' (score: 38.70967741935484)
❌ No strong match: 'gazette co.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. kidd & sons' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'london col. of physiology' β†’ 'longmans' (score: 30.303030303030297)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bribery & secret commissions prev. league' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'w. jolly' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'h. g. lester' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodge' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. g. hammond' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: '" welsh outlook,"' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'liberal publication dept.' β†’ 'macmillan' (score: 29.411764705882348)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sackville pr.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'charpentier' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'unwin bros.' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lincolnshire chronicle' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'liverpool council of voluntary aid' β†’ 'milford' (score: 29.268292682926834)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'l.c.c.' β†’ 'milford' (score: 15.384615384615385)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'london museum' β†’ 'longmans' (score: 47.61904761904761)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l.r.b.' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'school' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'london topog. soc.' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: '(amersham) morland' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stead's pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'f. a. newberry' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'vacher' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'w. j. hay' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'watts & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: '(angus & r.) australian book co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. bagster' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'questall pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'p. j. o'callaghan' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'publishers' assoc.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. lewis' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'robinson & birch' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'assoc. newspapers' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: '"northern chronicle,"' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'watts & co.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'thomas wall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'graphic pubns.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'manchester guardian' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. stanford' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. gill & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'petersfield bookshop' β†’ 'hutchinson' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'murray & e.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & donaldson' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'freemasons' hall' β†’ 'cassell' (score: 43.47826086956522)
❌ No strong match: 'freemasons' hall' β†’ 'cassell' (score: 43.47826086956522)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'colour pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'cursitor pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(plymouth) underhill' β†’ 'methuen' (score: 37.03703703703704)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mathieson' β†’ 'hutchinson' (score: 63.1578947368421)
❌ No strong match: 'w. b. clive' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'swan pr.' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. p. spalding' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'inst. of mech. engineers' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. green & son' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'hanover pr.' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'holden & hardingham' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'london & norwich pr.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'carriers pubg. co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'church book room' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. h. richards' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'c. j. thynne' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'gresham pubg. co.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: '(univ. lond. press) hodder' β†’ 'milford' (score: 30.303030303030297)
❌ No strong match: 'w. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: '(princeton univ. pr.) milford' β†’ 'milford' (score: 38.888888888888886)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nat. labour pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: '"the bazaar,"' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. tiranti' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'w. c. c.' β†’ 'constable ' (score: 22.22222222222222)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'electric pr.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'municipal journal' β†’ 'milford' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitehead & miller' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'john bull' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stead's pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'luzac; probsthain' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(edinburgh) g. waterston' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nat. gallery' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national gallery' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'n.l.w.' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'fight the famine council' β†’ 'hutchinson' (score: 41.17647058823529)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bible league' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wing & co.' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hartnoll & son' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'williams pr.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mitchell' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'imray, laurie' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ryl. historical soc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'press printers' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'goose' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'book house' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'nat. union of socs. for equal citizenship' β†’ 'constable ' (score: 23.529411764705888)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'soc. for protection of ancient buildings' β†’ 'heinemann' (score: 24.489795918367353)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 't. roberts & co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ponsonby' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '"evening standard,"' β†’ 'heinemann' (score: 35.71428571428571)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'caster & jelley' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'bryce' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. & g. baird' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oxford shorthand office' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'parker' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'the challenge' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. goodman' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hispanic soc. of america' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'hispanic soc. of america' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'hispanic soc. of america' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'peace soc.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'sherratt & hughes' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'paton' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'orpheus pub. hse.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fifield' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'john payne soc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nat. peace council' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'imray, laurie' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(angus & r.) australian book co.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: '(manchester) co-operative wholesale soc.' β†’ 'constable ' (score: 28.000000000000004)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mecredy, percy & co.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'the performer,"' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'persia soc.; east & west' β†’ 'cassell' (score: 25.806451612903224)
❌ No strong match: 'n.s.s.u.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'barker & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'brown & sons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'shetland news' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'scottish chronicle' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'spurrell' β†’ 'cassell' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'godalming chamber of trade' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'burrows' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'allen' β†’ 'macmillan' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'manresa pr.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melville & mullen ; j. clarke' β†’ 'methuen' (score: 27.77777777777778)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'davis & orioli' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nat. portrait gal' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: '(leicester) raithby, lawrence' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories, ltd.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nimmo' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'poultry pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(h. w. wilson) grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'wise' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'mather & crowther' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'twentieth century pr.' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: '(f. prewett) hogarth pr.' β†’ 'milford' (score: 19.354838709677423)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mandley & unett' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'mackay' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'soc. of ss. p. & p.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's. allen warner' β†’ 'macmillan' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'punch office' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '"thought values' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'internat. psycho-analytical press' β†’ 'constable ' (score: 32.55813953488372)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'holywell pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'munro & scott' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'railway pubg. co.' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'little art rooms' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. s. caines' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '"boy's own paper office' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'reform club' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'the sportsman' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'times of ceylon' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '"liverpool daily post,"' β†’ 'longmans' (score: 25.806451612903224)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'kelly' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. allen' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: '(chicago press milford' β†’ 'milford' (score: 48.275862068965516)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'scott, armstrong & co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pageant ctte.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hachette' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'maunsel; allen & u.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'imray, laurie' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'walter judd' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kelly's directories ; simpkin' β†’ 'simpkin 1' (score: 36.8421052631579)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'roy. warrant holders' assoc.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. n. ruffin' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'ruff's guide " office' β†’ 'simpkin 1' (score: 19.999999999999996)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. tempest' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'insurance clerks' orphanage' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'c. j. thynne' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'open court pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'd. winter' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blakey & co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'favil pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'roy. asiatic soc.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'alden & co.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'b. lansdown & sons' β†’ 'longmans' (score: 38.46153846153846)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'johnston' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'glasgow and w. of scotland guardian soc.' β†’ 'longmans' (score: 29.166666666666664)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'm. lester' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'foster, groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'foster, groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dawson & sons' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(yale) milford' β†’ 'milford' (score: 66.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(yale) milford' β†’ 'milford' (score: 66.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '"thanet advertiser,"' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sydenham' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'shakespeare league' β†’ 'cassell' (score: 31.999999999999996)
❌ No strong match: 'ruskin centenary council' β†’ 'simpkin 1' (score: 30.303030303030297)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'shaw & sons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'j. w. northend ; s.p.c.k.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gooding' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'london missionary soc.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '"shipping world,"' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'w. j. bryce' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'wilding' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'livingstone pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. hilger' β†’ 'milford' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'upton sinclair' β†’ 'unwin' (score: 42.10526315789473)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison, jehring' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'borough pubg. co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(univ. of london pr.) hodder & s.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'city & s. london ptg. & pubg. co.' β†’ 'constable ' (score: 27.906976744186053)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'davis & m.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'western mail' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'c. arnold' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: '(chicago univ. pr.) camb. univ. pr.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'probsthain & co.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'birrell & garnett' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'vine pr.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'sonoscript soc.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'argus s. african newspapers' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'wesley' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'e. step' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'brit. marine eng. design & constr. ctte.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'stead's pubg. house' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'chamber of commerce' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'doran' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(cheltenham) banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'labour pub. co., and allen & u.' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'maclehose, jackson' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'central board of missions; s.p.c.k.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'w. j. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. maskew miller; blackwell' β†’ 'macmillan' (score: 38.888888888888886)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'b. h. blackwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'library assoc.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'success pub. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'a. thom' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'a. thom' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright & sons' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'sutton & sons' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'mayfield pr.' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'forrest stationery co.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'vine pr.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sisson & p.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hermetic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'rien, wiley & co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'english insurance co.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'crystal pr.' β†’ 'constable ' (score: 57.14285714285714)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'catholic truth soc.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h. rees' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'littlebury bros.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'the railway engineer' β†’ 'heinemann' (score: 41.379310344827594)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'holborn pubg. house' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '(l. & v. woolf) hogarth pr.' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'schofield & s.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. baker' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hockliffe' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 's. french' β†’ 'milford' (score: 25.0)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '"pembrokeshire telegraph,"' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: '(doran) hodder' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'f. bennett & co.' β†’ 'heinemann' (score: 24.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'swiss & co.' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'mccorquodale' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'dobell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. hogg' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'times" office' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hirschfeld' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'garton foundation' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour research dept.' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'rien, wiley & co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'high commissioner for s.a.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. for nautical research' β†’ 'constable ' (score: 38.888888888888886)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sydenham' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'stead, danby & co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'true temperance assoc.' β†’ 'heinemann' (score: 32.25806451612904)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. gair' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: '(manchester) world pubg. co.' β†’ 'constable ' (score: 26.315789473684216)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'engineering,"' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'forest lovers' lib.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: '"bee" pubg. agency' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'spencer & co.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'victoria & albert museum' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'stanton pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allman' β†’ 'macmillan' (score: 66.66666666666667)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'b. herder' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'little art rooms' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'watkins' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'worshipful co. of plumbers' β†’ 'milford' (score: 24.242424242424242)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'nat. lib. of wales' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'wallace collection' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'veale, chifferiel' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'r. sach & co.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(preston) g. toulmin & sons' β†’ 'longmans' (score: 34.285714285714285)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'warren bros.' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watson's boys' college' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'fabian soc.; labour pubg. co.' β†’ 'constable ' (score: 25.64102564102564)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'welsh housing & devel. assn.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'crown agents for the colonies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gripton & co.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'waterlow & sons' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'united ctte. for tax. of land values' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'united ctte. for tax. of land values' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 's. rentell' β†’ 'cassell' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'cannon' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'canada newspaper co.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'young's library' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'convent of the holy name' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'athenaeum' β†’ 'heinemann' (score: 55.55555555555556)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'solicitors' law stationery soc.' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'freedom assoc.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'western mail' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kegan paul' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'j. willing' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. n. willis' β†’ 'unwin' (score: 35.29411764705882)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'c. h. ward' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'c. h. ward' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'c. h. ward' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'national s.s.u.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: '(manchester) co-operative union' β†’ 'hutchinson' (score: 34.14634146341463)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'benham & co.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'p. & g. wells' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'winning post' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'winning post' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'w. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'jewish bd. of deputies' β†’ 'hutchinson' (score: 31.25)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nat. council of women of gt. brit.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'β€œelectrical review' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'woodley, williams' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'marsden & co.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'midland educational co.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'w.c.o.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'potter' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'birrell & garnett' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'farncombe' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & boon' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'smiths' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ryl. geographical soc.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'davis & moughton' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'michelin' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
βœ… Matched 501 books to 'Milford' in 1921
βœ… Matched 266 books to 'Macmillan' in 1921
βœ… Matched 118 books to 'Longmans' in 1921
βœ… Matched 156 books to 'Methuen' in 1921
βœ… Matched 127 books to 'Constable ' in 1921
⚠️ Skipping 'simpkin 1' in 1921 due to missing lat/lon
⚠️ Skipping 'cassell' in 1921 due to missing lat/lon
⚠️ Skipping 'unwin' in 1921 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1921 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1921 due to missing lat/lon

πŸ“„ Processing df_1922.csv for year 1922
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac; probsthain' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'luzac; probsthain' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'athenaeum pr.' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'f. malcolm' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'caxton pubg. co.' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 't. b. browne' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'govt. printg. office' β†’ 'simpkin 1' (score: 27.586206896551722)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'african publications' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ministry of agriculture' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'ainsley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 't. l. ainsley' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'art & book co.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'co-operative printing soc.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'assoc. of assist. librarians' β†’ 'macmillan' (score: 32.432432432432435)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'alexander' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'rolls house pubg. co.' β†’ 'constable ' (score: 25.806451612903224)
❌ No strong match: 'roffey & clark' β†’ 'macmillan' (score: 26.086956521739136)
❌ No strong match: 'united kingdom alliance' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'editor' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'β€œ folkestone herald,”' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'st. andrew soc.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'standard pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'proletarian bookstall' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'mission to lepers' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'internat. development co.' β†’ 'constable ' (score: 34.285714285714285)
❌ No strong match: 'alliance pubg. co.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'business directories' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'marshall's sch. of cookery' β†’ 'milford' (score: 30.303030303030297)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'c. argles' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'swan pr.' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'j. wisden' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'united pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'art trade journal' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'howlett & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'borough printing works' β†’ 'hutchinson' (score: 31.25)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'imperial bureau of entomology' β†’ 'milford' (score: 27.77777777777778)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'american book supply' β†’ 'macmillan' (score: 34.48275862068966)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'autocar' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'ayres' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bacon' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. f. millard' β†’ 'milford' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'c. a. pearson' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'watmoughs' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'halewood' β†’ 'milford' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. murby' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pollard' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'elliott & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'livingstone pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'liss printing wks.' β†’ 'simpkin 1' (score: 37.03703703703704)
❌ No strong match: 'sheldon pr. s.p.c.k.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. drew' β†’ 'wyman' (score: 16.666666666666664)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oliver & boyd' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'british periodicals' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(angus & r.) brit. australasian book store' β†’ 'constable ' (score: 23.076923076923073)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. w. beaumont' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. & j. beck' β†’ 'constable ' (score: 18.181818181818176)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'church of england s. s. i.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'hughes & son' β†’ 'hutchinson' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'navarre soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whittingham & g.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'p. lee warner' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pageant ctte.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'rowland ward' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'mortimer, harley & co.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. bibby' β†’ 'wyman' (score: 15.384615384615385)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'bible house' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'falconer' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'l. chaundy' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'farwood pub. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. g. commin' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dale, reynolds' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dale, reynolds' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'phillimore' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'w. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'clarion pr.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wallace gandy' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'wallace gandy' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'navarre soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. falconer' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'bolton public lib.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bradley & son' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'sketch' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'norfolk & suffolk s.s. union' β†’ 'unwin' (score: 24.242424242424242)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'holborn pubg. house' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'livingstone pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'court guide office' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'boyle's court guide' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'libraries cΓ­te.' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'press art school' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'blacklock & co.' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'blacklock & co.' β†’ 'macmillan' (score: 25.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'gowans & gray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'builder' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'review pr.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'β€œ brewing trade review,"' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daily herald' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'l. j. bright' β†’ 'milford' (score: 21.052631578947366)
❌ No strong match: 'bright & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'goddard, walker & browns.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'british assoc.' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'h. greenwood' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'british museum (n.h.)' β†’ 'methuen' (score: 35.71428571428571)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'connor' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'world brotherhood federation' β†’ 'heinemann' (score: 27.027027027027028)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'editor' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. g. bisset' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. howell' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'o.u.p.' β†’ 'unwin' (score: 18.181818181818176)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'business telephone directories' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. r. powys' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'railway gazette' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'l. & v. woolf' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'holywell pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'united ctte. for tax. of land values' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'winthorpe pr.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'burke pubg. co.' β†’ 'constable ' (score: 24.0)
❌ No strong match: 'alex. gardner' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'f. h. revell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'mappa co.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'british esperanto assoc.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'b. m. searle' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'b. m. searle' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'searle' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'poultry world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'cage birds' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'nash & grayson' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'eden fisher' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'f. h. revell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'la vie intellectuelle,"' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'encyclopedia pr.' β†’ 'heinemann' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'canada newspaper co.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash & grayson' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dreadnought publishers' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'casanova soc.' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'efficiency magazine' β†’ 'heinemann' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'milne, tannahill' β†’ 'heinemann' (score: 48.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'milne & stephen' β†’ 'methuen' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'ryl. historical soc.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'geo. gill' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'brunswick pr.' β†’ 'unwin' (score: 44.44444444444444)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'christian liter. soc. for india' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'farfield' β†’ 'milford' (score: 40.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'b. m. searle' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'commandant' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pitman hart' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'w. gandy' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'church family newspaper' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. nisbet' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'maunsel & roberts' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'h. egerton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'quality pr.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'evolution soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nash & grayson' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. n. fowler' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'doran' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'gowan & co.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash & grayson' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r. aikman' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'e. cooper' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national unionist assoc.' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'the builder' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. reed-lewis' β†’ 'unwin' (score: 22.22222222222222)
❌ No strong match: 't. cook & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'cook; simpkin' β†’ 'simpkin 1' (score: 63.63636363636363)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. n. foulis' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: '" herald,"' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'r.i.b.a.' β†’ 'macmillan' (score: 23.529411764705888)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'messenger co.' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'marsden & co.' β†’ 'wyman' (score: 33.333333333333336)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'country gentlemen's assoc.' β†’ 'constable ' (score: 38.888888888888886)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'british esperanto assoc.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'homeland assn.' β†’ 'longmans' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'cricketer syndicate' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'vine pr.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: '*tonbridge free press,"' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'indo-british assn.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'w. knott' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 't. h. graham' β†’ 'methuen' (score: 21.052631578947366)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'daily mail' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'daily mirror' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'simmons & waters' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'de la rue' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'mayfair pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'daniel pr.' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'f. h. revell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'accountancy and sec. training inst.' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stanton pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'j. falconer' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'favil pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'simmons & waters' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'ward, l.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nisbet & co.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'j. wright; simpkin' β†’ 'simpkin 1' (score: 51.85185185185186)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'spiritualists' national union' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dean & son' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'research pr.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'east & west' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'labour pubg. co.; allen & u.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'harper bros.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'literary and philos. soc.' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'phillimore' β†’ 'milford' (score: 47.05882352941176)
❌ No strong match: 'o. blackford' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: '(bath) cedric chiyers' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'merton pr.' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'funk & wagnalls' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'cawley's publicity service' β†’ 'cassell' (score: 30.303030303030297)
❌ No strong match: 'marchant, singer' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'directory pubg. co.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'western mail' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'london research & information bureau' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'dod's peerage' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'alex. mccubbin' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'maunsel' β†’ 'cassell' (score: 57.14285714285714)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'cornish' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'simon' β†’ 'simpkin 1' (score: 57.14285714285714)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'darlington' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allied artists' corporation' β†’ 'macmillan' (score: 27.77777777777778)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'dunlop rubber co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'deighton, bell' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'e. dwelly' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'f. c. barnwell' β†’ 'cassell' (score: 47.61904761904761)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'eason & son' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. lane' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. grant' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'n.c.e.f.c.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'african world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'g. h. elliott' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'trades union congress; labour party' β†’ 'constable ' (score: 31.11111111111111)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'thos. cook' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'tyndall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. pearsall & co.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sanitary pubg. co.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'books, ltd.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'publishers' circular' β†’ 'macmillan' (score: 27.586206896551722)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'walker' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'e. j. larby' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. speaight' β†’ 'simpkin 1' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headquarters' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'british esperanto assoc.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'british esperanto assoc.' β†’ 'heinemann' (score: 30.303030303030297)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'e.c.f.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'brit. & for. unitarian assoc.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'morgan' β†’ 'longmans' (score: 57.14285714285714)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'jarvis & foster' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'united pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'eason & son' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. b. saunders' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'a. holmes' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'g. e. matheson' β†’ 'methuen' (score: 47.61904761904761)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'faraday soc.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'faraday soc.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'macdonald & martin' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'mark lane express,"' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'autocar' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'feathered world' β†’ 'milford' (score: 36.36363636363637)
❌ No strong match: 'industrial publicity service' β†’ 'constable ' (score: 36.8421052631579)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'hammond & headley' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. stenhouse' β†’ 'methuen' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'rentell' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'broadway pr.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'b. m. searle' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gael co-operative pubg. co.' β†’ 'constable ' (score: 27.027027027027028)
❌ No strong match: 'mellifont pr.' β†’ 'milford' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chiswick pr.' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'first edition club' β†’ 'simpkin 1' (score: 37.03703703703704)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'national soc.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'jefferson pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'laurie' β†’ 'unwin' (score: 36.36363636363637)
❌ No strong match: 'j. w. bean' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'nat. union of allotment holders' β†’ 'constable ' (score: 29.268292682926834)
❌ No strong match: 'smith pubg. house' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'sheldon pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. k. morton' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'fleetway pr.' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'r. e. thomas' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heywood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'cape' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'aberdeen univ. pr.' β†’ 'heinemann' (score: 29.629629629629626)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'j. heywood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'favil pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'internat. psycho-analytical press' β†’ 'constable ' (score: 32.55813953488372)
❌ No strong match: 'internat. psycho-analytical pr. ; allen & u.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gurney & j.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'marshall's sch. of cookery' β†’ 'milford' (score: 30.303030303030297)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'churchman pubg. co.' β†’ 'hutchinson' (score: 41.379310344827594)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'i,. parsons' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'g. j. palmer & sons' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. jackson' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'goodall' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'post magazine' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'geo. gill' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'edinburgh architectural assoc.' β†’ 'hutchinson' (score: 30.000000000000004)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'bloomsbury pr.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 't. w. palmer' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'brit. austral. wool realisation assoc.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'nat. magazine co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'd. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'collins & darwell' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'novello' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'banks (marshall bros.)' β†’ 'cassell' (score: 34.48275862068966)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'benham' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'barnicott & pearce' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'rothamsted exper. stn.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'e. & f. spon' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'headquarters' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'β€œ westminster gazette,”' β†’ 'simpkin 1' (score: 31.25)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gale & polden' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'financial news' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'h. russell' β†’ 'cassell' (score: 58.82352941176471)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'p. a. guthrie' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'pear tree pr.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 't. wall & sons' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'sutton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. w. northend' β†’ 'methuen' (score: 38.095238095238095)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'science of thought pr.' β†’ 'milford' (score: 27.586206896551722)
❌ No strong match: 'science of thought pr.' β†’ 'milford' (score: 27.586206896551722)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'freedom assoc.' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'e. stanford' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'religious evolution research soc.' β†’ 'hutchinson' (score: 27.906976744186053)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'roy. soc. of painter-etchers' β†’ 'constable ' (score: 26.315789473684216)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'amalgamated press' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'educ. book co.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. palmer' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'marshall's, ltd.' β†’ 'cassell' (score: 34.78260869565217)
❌ No strong match: 'municipal publicity dept.' β†’ 'macmillan' (score: 29.411764705882348)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'n.c.e.f.c.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'post magazine' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac; probsthain' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. giles' β†’ 'heinemann' (score: 35.29411764705882)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'j. murray' β†’ 'wyman' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'teachers & taught' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: '" chronicle,"' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'woodbrooke extension ctte.' β†’ 'constable ' (score: 27.77777777777778)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: '(doran) hodder & s.' β†’ 'longmans' (score: 29.629629629629626)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'vickery, kyrle & co.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'bickers' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. taylor' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hicksonia pubg. co.' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'patrick & page' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'cotswold gallery' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman; radio pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'a. l. humphreys' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. reid; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'goose & son' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'friends' bookshop' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'roy. asiatic soc.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hollings' book shop' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'church of england s. s. i.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scot. home rule assoc.' β†’ 'constable ' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'emmott & co.' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: '"s. eastern gazette,"' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'daily news' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scottish chronicle' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'c. knight' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'favil pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'douglas & f.' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'j. & j. bennett' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'crown agents for the colonies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'british association' β†’ 'macmillan' (score: 35.71428571428571)
❌ No strong match: 'maclehose, jackson' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: '(harvard univ. pr.) milford' β†’ 'milford' (score: 41.17647058823529)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'central somerset gaz.' β†’ 'constable ' (score: 45.16129032258065)
❌ No strong match: 'disabled soc.' β†’ 'constable ' (score: 52.17391304347826)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'dawson' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chaundy & cox' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'thomas murray' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. turton' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'e. hulton' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'st. clement's pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'proportional represent. soc.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'brit., for. & colonial corporation' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'w. e. harrison' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'rev, a. r. l. gardner' β†’ 'longmans' (score: 27.586206896551722)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. b. vaughan' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'w. j. bryce' β†’ 'wyman' (score: 25.0)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'f. h. revell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'shakespeare head pr.' β†’ 'heinemann' (score: 27.586206896551722)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'colliery guardian' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'high commissioner for india' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'times of india' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r. ingalese' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'bowman & murdoch' β†’ 'wyman' (score: 38.095238095238095)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'a. c. curtis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'richardson's bookshop' β†’ 'constable ' (score: 32.25806451612904)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'eastern papers, ltd' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'trade papers pubg. co.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'j. m. ouseley' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'doubleday, page' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'tofts' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'manchester univ. pr. ; longmans' β†’ 'longmans' (score: 41.02564102564102)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'munro' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'internat. psycho-analytic pr.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'carey pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'spurrell' β†’ 'cassell' (score: 53.333333333333336)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'jordan & sons' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'w. f. henderson' β†’ 'heinemann' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hulton & co.' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'egoist pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: '(talbot pr.), longmans' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'author; (leeds) f. j. walker' β†’ 'constable ' (score: 26.315789473684216)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'garrood' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'd. wyllie & son' β†’ 'hutchinson' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'n.h.r.u.' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'a. baxendine' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'manchester guardian' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'β€œ islamic review.' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'ginn' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hispanic soc. of america' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'king' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'girl's own paper' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'luzac; probsthain' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'st. catherine pr.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'trades union congress' β†’ 'hutchinson' (score: 32.25806451612904)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'labour party' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'mitchell, hughes & clarke' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'mitchell, hughes & clarke' β†’ 'methuen' (score: 31.25)
❌ No strong match: 'australian book co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'banks' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'woods & sons' β†’ 'longmans' (score: 30.000000000000004)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'allman & son' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'fabian society ; allen & u.' β†’ 'constable ' (score: 37.83783783783784)
❌ No strong match: 'hy. holt' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'selwyn & blount' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'sheldon pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. skinner' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'f.m. lawson' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'cornish bros.' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'manchester guardian' β†’ 'macmillan' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: '(dublin) kenny pr.' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'clowes' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'grosvenor galleries' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'homeland assoc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: '$. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'abel heywood' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'teachers and taught' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'henley pub. co.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'liberal publ. dept.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'library assoc.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'library assoc.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'l.v. central protection soc. of london' β†’ 'constable ' (score: 29.166666666666664)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. jaschke' β†’ 'cassell' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'truslove & hanson' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'meredith' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'r. tuck' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'vinton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'lloyds' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chas. knight' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'dunlop' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'ldn. college of chemistry & pharmacy' β†’ 'longmans' (score: 22.72727272727273)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'β€œ london's underground,'' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h. o. lloyd' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 't. cook & son' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'c. h. richards' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'arthur lovell' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'f. a. newberry' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'w. b. clive' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'willowbrooke pr.' β†’ 'milford' (score: 34.78260869565217)
❌ No strong match: 'e. j. burrow' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'crumbie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. smith & son' β†’ 'hutchinson' (score: 41.666666666666664)
❌ No strong match: 'jack & nelson' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'm. h. gill' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'caxton pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'cosmolingual pr.' β†’ 'constable ' (score: 46.15384615384615)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'r. carswell' β†’ 'cassell' (score: 66.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'livingstone' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'h. je ins' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'anglo-french musical co.' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: '(newcastle) a. reid' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'county printers' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'publishers' assoc.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'secker' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'robinson & b.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'gardner, d.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nash & grayson' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'rosemount pr.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'o'connor' β†’ 'longmans' (score: 37.5)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'f. shaw' β†’ 'heinemann' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pioneer pr.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national review' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h. f. w. deane' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'l. & v. woolf' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'electrical pr.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'marconi internat. code co.' β†’ 'constable ' (score: 38.888888888888886)
❌ No strong match: 'navarre soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. reeves' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: '(birmingham) cornish' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bookman's journal' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'internat. bookshops' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'freemasons' hall' β†’ 'cassell' (score: 43.47826086956522)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '"church family newsppr."; s.p.c.k.' β†’ 'hutchinson' (score: 31.818181818181824)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'e. w. dickens' β†’ 'heinemann' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'syren & shipping' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'e. wilson' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: '(cambridge) w. s. spalding' β†’ 'cassell' (score: 30.303030303030297)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'f. s. stapleton' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sharp' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'j. falconer' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nash' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'rotherham corporation' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'co-operative union' β†’ 'heinemann' (score: 37.03703703703704)
❌ No strong match: 'literary year-book pr.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'j. m. watkins' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'inst. op metals' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wesleyan conference office' β†’ 'heinemann' (score: 28.57142857142857)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'high commissioner for india' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'michelin tyre co.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'michelin tyre co.' β†’ 'heinemann' (score: 38.46153846153846)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'e. miles' β†’ 'milford' (score: 40.0)
❌ No strong match: 'london & norwich pr.' β†’ 'longmans' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'trade papers pubg. co.' β†’ 'constable ' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. saville' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'j. townsend & sons' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'club' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'murby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'swan pr.' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. r. skinner; β€œfinancial times”' β†’ 'simpkin 1' (score: 24.390243902439025)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'maclehose' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. tiranti' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chapman & wilson' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'chapman & wilson' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bowman & murdoch' β†’ 'wyman' (score: 38.095238095238095)
❌ No strong match: 'j. d. potter' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'g. e. ry.' β†’ 'constable ' (score: 21.052631578947366)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'hispanic soc.' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'temple pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 't. evans' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lewis' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'philip & son' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'municipal journal' β†’ 'milford' (score: 41.666666666666664)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'bowman & murdoch' β†’ 'wyman' (score: 38.095238095238095)
❌ No strong match: 'bowman & murdoch' β†’ 'wyman' (score: 38.095238095238095)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'yorkshire evening news."' β†’ 'longmans' (score: 31.25)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'whitehead & miller' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'rudall, carte' β†’ 'macmillan' (score: 36.36363636363637)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'sheldon pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'allday' β†’ 'macmillan' (score: 53.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'gee' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'university college' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'church of eng. s.s. inst.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'r. h. johns' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'c. mitchell' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r. twining & co.' β†’ 'simpkin 1' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'w. may & co.' β†’ 'wyman' (score: 35.29411764705882)
❌ No strong match: 'w. may' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nicholson' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'mcgraw-hill pubg. co.' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'goose & son' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'london pubg. co.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'n.s.s.u.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'j. harwood' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'poetry bookshop' β†’ 'methuen' (score: 27.27272727272727)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'british australasian' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'e. g. allen & son' β†’ 'longmans' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'angus & r.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'australasian bk. store' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'talbot pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'northend' β†’ 'methuen' (score: 53.333333333333336)
❌ No strong match: 'gael co-operative soc.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'oil & petroleum manual" office' β†’ 'longmans' (score: 26.315789473684216)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 't. roberts & co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'soc. for abolition of cap. punishment' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'bryant' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'e. hulton' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'e. hulton' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gramophone co.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lothian book pubg. co.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: '(yale univ. pr.) milford' β†’ 'milford' (score: 45.16129032258065)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. f. shaw' β†’ 'heinemann' (score: 21.052631578947366)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'fowler' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'plebs league' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'gale & p.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'parker; milford' β†’ 'milford' (score: 63.63636363636363)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'parker & son' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'a. c. curtis' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'beechcroft settlement' β†’ 'constable ' (score: 38.70967741935484)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'ouseley' β†’ 'constable ' (score: 47.05882352941176)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'dreadnought publishers' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'ewart, seymour' β†’ 'wyman' (score: 31.57894736842105)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hispanic soc. of america' β†’ 'macmillan' (score: 30.303030303030297)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'n.c.e.f.c.' β†’ 'cassell' (score: 23.529411764705888)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'a. montgomery' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'john payne soc.' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'internat. feder. of master cotton spinners' β†’ 'heinemann' (score: 27.450980392156865)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'peat' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'authoress' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'burns & o.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'livingstone pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 's.c.m.' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'co-operative wholesale soc.' β†’ 'constable ' (score: 37.83783783783784)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'heath' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'scottish chronicle; mowbray' β†’ 'constable ' (score: 32.432432432432435)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. egerton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'h. egerton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'royal institution' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'king's college hospital' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's. c. phillips' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'holborn pubg. house' β†’ 'longmans' (score: 37.03703703703704)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'soc. of ss. peter & paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'nat. pig breeders' assoc.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'john bull' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daily mirror' β†’ 'milford' (score: 42.10526315789473)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'digby, long' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'success pub. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'the rainbow' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'foyle' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'e. stock' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'lund, humphries' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'society' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'w. g. lewis' β†’ 'unwin' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'w. e. a.' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'moring' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'financial news' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'liverpool univ. pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'smallholder' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'poultry world' β†’ 'milford' (score: 40.0)
❌ No strong match: 'poultry' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'poultry' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wise & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'gowans & g.' β†’ 'longmans' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'technical pubg. co.' β†’ 'constable ' (score: 34.48275862068966)
❌ No strong match: 'p. marshall' β†’ 'cassell' (score: 44.44444444444444)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'β€œ guardian,”' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'warren' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'forster groom' β†’ 'constable ' (score: 43.47826086956522)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: '(columbia univ. pr.) p. s. king' β†’ 'longmans' (score: 25.64102564102564)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: '" printers' pie,”' β†’ 'simpkin 1' (score: 30.76923076923077)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. h. burrows' β†’ 'hutchinson' (score: 26.086956521739136)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wells, gardner' β†’ 'longmans' (score: 36.36363636363637)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'women's employment pubg. co.' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'miss petherbridge' β†’ 'methuen' (score: 41.666666666666664)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'deane & sons' β†’ 'heinemann' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'judaic pubg. co.' β†’ 'simpkin 1' (score: 24.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'punch office' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'punch,"' β†’ 'hutchinson' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'st. james's pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'golden cockerell pr.' β†’ 'cassell' (score: 29.629629629629626)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'navarre soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. marshall & co.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'radio pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'seeley' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'anti-prohibition league' β†’ 'simpkin 1' (score: 31.25)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: '(k. paul) routledge' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'h. russell' β†’ 'cassell' (score: 58.82352941176471)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'thew' β†’ 'methuen' (score: 54.54545454545454)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 't. reed' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 't. n. foulis' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'allen & unwin' β†’ 'unwin' (score: 55.55555555555556)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'reid & co.' β†’ 'milford' (score: 23.529411764705888)
❌ No strong match: '" freeman's jnl,"' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r.i.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. williams' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'masters' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. reid' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'c. w. daniel' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'l. reeve' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'f. warne' β†’ 'wyman' (score: 46.15384615384615)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. jackson ; simpkin' β†’ 'simpkin 1' (score: 48.275862068965516)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'funk & wagnalls' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sydenham pr.' β†’ 'simpkin 1' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'northern pubg. co.' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'fabian soc.' β†’ 'macmillan' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'walker's galleries' β†’ 'cassell' (score: 31.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'king & hutchings' β†’ 'hutchinson' (score: 61.53846153846154)
❌ No strong match: 'sweet & m. ; stevens & sons' β†’ 'heinemann' (score: 27.77777777777778)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'secretarial stationery store' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'w. judd' β†’ 'wyman' (score: 16.666666666666664)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'kelly's directories' β†’ 'milford' (score: 23.076923076923073)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'league of the church militant' β†’ 'macmillan' (score: 36.8421052631579)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'financial times' β†’ 'longmans' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'e, goldston' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'ruff's guide' β†’ 'unwin' (score: 23.529411764705888)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'jordan' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'athenaeum pr.' β†’ 'heinemann' (score: 45.45454545454546)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. parsons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'christian liter. soc. for india' β†’ 'constable ' (score: 34.14634146341463)
❌ No strong match: 'chaundy & cox' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. long' β†’ 'longmans' (score: 53.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'mayfair pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'w. dawson' β†’ 'wyman' (score: 42.85714285714286)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'thynne' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'normal pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bristol times & mirror' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collingridge' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'e. mackay' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'palmer & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'skinner' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'musical opinion' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'bradbury, agnew' β†’ 'wyman' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'c. letts' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'schoolgirls' own; "β€œ school friend,”' β†’ 'hutchinson' (score: 30.434782608695656)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. & e. bumpus' β†’ 'methuen' (score: 19.047619047619047)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. & t. clark' β†’ 'macmillan' (score: 27.27272727272727)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'belfast steam printing co.' β†’ 'simpkin 1' (score: 34.285714285714285)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'radio press' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'radio pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: '" daily express,”' β†’ 'milford' (score: 25.0)
❌ No strong match: 'radio pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'secretaries assoc.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'mowbray' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'connoisseur' β†’ 'constable ' (score: 47.61904761904761)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'soc. ss. peter and paul' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'business directories' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'g. bell' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'j. g. wilson' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'shaw' β†’ 'heinemann' (score: 30.76923076923077)
❌ No strong match: 'c.m.s.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'a. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'studio' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'ordnance survey' β†’ 'longmans' (score: 43.47826086956522)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'parsons' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'gael co-operative soc.' β†’ 'constable ' (score: 31.25)
❌ No strong match: 'compendiums, ltd.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'taylor & f.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'witherby & co.' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'maunsel & r.' β†’ 'cassell' (score: 42.10526315789473)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'l. & v. woolf' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'library pr.' β†’ 'milford' (score: 22.22222222222222)
❌ No strong match: 'scott, greenwood' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'sifton' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'autiior' β†’ 'hutchinson' (score: 47.05882352941176)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'james) w.c.o.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'chelsea pubg. co.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'milne & hutchinson' β†’ 'hutchinson' (score: 71.42857142857143)
❌ No strong match: 'civil service pr. ; simpkin' β†’ 'simpkin 1' (score: 38.888888888888886)
❌ No strong match: 'merton pr.' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'school of slavonic studies' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'henley pub. co.' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'n. w. henley pubg. co.; wireless pr.' β†’ 'constable ' (score: 21.739130434782606)
❌ No strong match: 'n. w. henley pubg. co.; wireless pr.' β†’ 'constable ' (score: 21.739130434782606)
❌ No strong match: 'n. w. henley pubg. co.; wireless pr.' β†’ 'constable ' (score: 21.739130434782606)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'scientific pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'hazell, watson' β†’ 'macmillan' (score: 43.47826086956522)
❌ No strong match: 'talbot pr.; unwin' β†’ 'unwin' (score: 45.45454545454546)
❌ No strong match: 'c. palmer' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'adnitt & naunton' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hendersons' β†’ 'heinemann' (score: 52.63157894736843)
❌ No strong match: 'marlborough' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'r. a. institution' β†’ 'hutchinson' (score: 37.03703703703704)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'somerset folk pr.' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'st. dominic’s pr.' β†’ 'simpkin 1' (score: 38.46153846153846)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gregg pubg. co.' β†’ 'hutchinson' (score: 24.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'south africa' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'bartholomew' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'business statistics co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'larby' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'twenty one gallery' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'abingdon pr.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'bank of liverpool' β†’ 'cassell' (score: 25.0)
❌ No strong match: 'the britons' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 's.c.m.' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'chambers' β†’ 'constable ' (score: 44.44444444444444)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'foulks lynch' β†’ 'macmillan' (score: 28.57142857142857)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'n.s.s.u.' β†’ 'cassell' (score: 26.66666666666667)
❌ No strong match: 'a. f. bird' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'milford; k. paul' β†’ 'milford' (score: 60.86956521739131)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'art & humour pubg. co.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gardner, darton' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'whitfield, king' β†’ 'simpkin 1' (score: 33.333333333333336)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'stanford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: '"the connoisseur,"' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'daily news and star,”' β†’ 'longmans' (score: 34.48275862068966)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. maskew miller' β†’ 'macmillan' (score: 48.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'r. cobden-sanderson' β†’ 'constable ' (score: 41.379310344827594)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'quaritch' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'zionist organization' β†’ 'longmans' (score: 35.71428571428571)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'w. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: '(lincoln record soc.), w. k. morton' β†’ 'milford' (score: 23.809523809523814)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'lindsey pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: 'f. griffiths' β†’ 'hutchinson' (score: 27.27272727272727)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'stevens' exercise equipment service' β†’ 'simpkin 1' (score: 22.72727272727273)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'church of england s. s. i.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'sifton praed' β†’ 'milford' (score: 52.63157894736843)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'open court co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h. k. lewis' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'spottiswoode, ballantyne' β†’ 'cassell' (score: 32.25806451612904)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'heffer; simpkin' β†’ 'simpkin 1' (score: 58.33333333333333)
❌ No strong match: 'w. j. roberts' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'm. secker' β†’ 'methuen' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'crown agents for the colonies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'wheldon & wesley' β†’ 'constable ' (score: 38.46153846153846)
❌ No strong match: 'butterworth & shaw' β†’ 'hutchinson' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'privately pr.' β†’ 'milford' (score: 30.000000000000004)
❌ No strong match: 'a. moring' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'a. j. macdonald' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'newnes' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'angold's, ltd.' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: '"the sketch,"' β†’ 'hutchinson' (score: 34.78260869565217)
❌ No strong match: 'sketch' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'the studio' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'crown agent for colonies' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pharmaceutical pr.' β†’ 'macmillan' (score: 37.03703703703704)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'hardingham' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'trans..' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hugo's language inst.' β†’ 'longmans' (score: 41.379310344827594)
❌ No strong match: 'kelf & co.' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: 'sweet & maxwell' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'a. gardner' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sisson & p.' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'blackwood' β†’ 'milford' (score: 37.5)
❌ No strong match: 's.s.u.' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'sheldon pr.' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 't. f. downie' β†’ 'constable ' (score: 27.27272727272727)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'privately printed' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'teachers and taught' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'g. philip' β†’ 'milford' (score: 25.0)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'angus watson' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'churchill' β†’ 'hutchinson' (score: 52.63157894736843)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'holerth pr.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'chatto' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. townsend & sons' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'j. bale' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'e. m. tenison' β†’ 'hutchinson' (score: 43.47826086956522)
❌ No strong match: 'mayflower pr.' β†’ 'milford' (score: 40.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'humphreys' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'eyre & s.' β†’ 'methuen' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'emmott' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'heath, cranton' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'medici soc.' β†’ 'hutchinson' (score: 38.095238095238095)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'marshall bros.' β†’ 'cassell' (score: 38.095238095238095)
❌ No strong match: 'c. & e. layton' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'alex. thom' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'waverley book co.' β†’ 'constable ' (score: 29.629629629629626)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'maclenox jackson' β†’ 'macmillan' (score: 48.0)
❌ No strong match: 'g. toulmin' β†’ 'unwin' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'gibbons' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: '" great thoughts,"' β†’ 'methuen' (score: 31.999999999999996)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'oliver & b.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'bazaar' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'j. wright' β†’ 'unwin' (score: 28.57142857142857)
❌ No strong match: 'the rainbow' β†’ 'hutchinson' (score: 47.61904761904761)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: '(wiley) chapman & h.' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'times,".' β†’ 'hutchinson' (score: 33.333333333333336)
❌ No strong match: 'the times' β†’ 'heinemann' (score: 44.44444444444444)
❌ No strong match: 'times of ceylon' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ball' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: '"country life"' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'burgess & co.' β†’ 'constable ' (score: 26.086956521739136)
❌ No strong match: 'e. macdonald' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'g. rose' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'waterlow' β†’ 'cassell' (score: 40.0)
❌ No strong match: 'l. & v. woolf' β†’ 'milford' (score: 19.999999999999996)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'spottiswoode' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'e. mathews' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'page' β†’ 'cassell' (score: 36.36363636363637)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'headley' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'evans bros.' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'motor cycle' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'odhams pr.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'd. o'connor' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'brentanos' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'hodges, figgis' β†’ 'longmans' (score: 27.27272727272727)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'communist party' β†’ 'constable ' (score: 48.0)
❌ No strong match: 'crown agents for the colonies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'crown agents for the colonies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'philpot' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'w. green' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'h. r. bohee' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. phillips' β†’ 'cassell' (score: 33.333333333333336)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'h. muirhead' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'j. connell & sons' β†’ 'constable ' (score: 37.03703703703704)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'long' β†’ 'longmans' (score: 66.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'rivingtons' β†’ 'longmans' (score: 44.44444444444444)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'national adult school. union' β†’ 'hutchinson' (score: 36.8421052631579)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'office' β†’ 'cassell' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'directory pubg. co.' β†’ 'constable ' (score: 27.586206896551722)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'sidgwick & j.' β†’ 'simpkin 1' (score: 36.36363636363637)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: '" masonic record,”' β†’ 'milford' (score: 40.0)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'church assoc.' β†’ 'hutchinson' (score: 52.17391304347826)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'clarke' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'pickering & i.' β†’ 'simpkin 1' (score: 43.47826086956522)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'probsthain' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'kimpton' β†’ 'simpkin 1' (score: 50.0)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'j. j. keliher' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'verstone' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'a. reid; simpkin' β†’ 'simpkin 1' (score: 56.00000000000001)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'v. & a. museum' β†’ 'methuen' (score: 28.57142857142857)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum' β†’ 'methuen' (score: 46.15384615384615)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'museum; h.m.s.o.' β†’ 'hutchinson' (score: 30.76923076923077)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'p. allan' β†’ 'macmillan' (score: 58.82352941176471)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'vinton & co.' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'scientific pr.' β†’ 'simpkin 1' (score: 34.78260869565217)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'henslowe pr.' β†’ 'constable ' (score: 45.45454545454546)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'morland' β†’ 'milford' (score: 57.14285714285714)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'eastern pr.' β†’ 'methuen' (score: 44.44444444444444)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'swarthmore pr.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'f. v. white' β†’ 'heinemann' (score: 30.000000000000004)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'success pub. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'nat. lib. of wales' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'iliffe' β†’ 'milford' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'united council for missionary educ.' β†’ 'hutchinson' (score: 31.11111111111111)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'sands' β†’ 'longmans' (score: 46.15384615384615)
❌ No strong match: 'green' β†’ 'methuen' (score: 50.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 'whitcombe & t.' β†’ 'constable ' (score: 41.666666666666664)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'odhams' β†’ 'longmans' (score: 42.85714285714286)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'morland pr.' β†’ 'milford' (score: 44.44444444444444)
❌ No strong match: 'salvationist pubg. & supplies' β†’ 'constable ' (score: 35.89743589743589)
❌ No strong match: 'standard pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'walpole soc.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'daniel' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'harrison & sons' β†’ 'hutchinson' (score: 48.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'n. ling' β†’ 'unwin' (score: 50.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'shaftsbury pubg. co.' β†’ 'constable ' (score: 26.66666666666667)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'williams & n.' β†’ 'macmillan' (score: 45.45454545454546)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'warne' β†’ 'wyman' (score: 60.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'epworth pr.' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'faith pr.' β†’ 'milford' (score: 25.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'p. s. king' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'elliot' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'mccaw, stevenson' β†’ 'hutchinson' (score: 38.46153846153846)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: '(doran) hodder' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'bendle' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'midland educ. co.' β†’ 'macmillan' (score: 38.46153846153846)
❌ No strong match: 'a. m. philpot' β†’ 'milford' (score: 40.0)
❌ No strong match: 'g. richards' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'a. melrose' β†’ 'milford' (score: 35.29411764705882)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'brit. sports pub. co.' β†’ 'constable ' (score: 25.806451612903224)
❌ No strong match: 'nisbet' β†’ 'constable ' (score: 50.0)
❌ No strong match: 'united pr.' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'health promotion' β†’ 'hutchinson' (score: 46.15384615384615)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'associated newspapers' β†’ 'macmillan' (score: 33.333333333333336)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'a. webster' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 's. low' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'labour pubg. co.' β†’ 'milford' (score: 26.086956521739136)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'batsford' β†’ 'milford' (score: 53.333333333333336)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'univ. tutorial pr.' β†’ 'constable ' (score: 35.71428571428571)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'philip' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'chatto & w.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder' β†’ 'milford' (score: 30.76923076923077)
❌ No strong match: 'reeves' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'stevens' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'boy's own paper' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'locomotive pubg. co.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'clive' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hayes' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'benn bros.' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'murray' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'j. clarke' β†’ 'cassell' (score: 37.5)
❌ No strong match: 'combridges' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'scribners' β†’ 'hutchinson' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'whittaker' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'd. c. heath' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'mcgraw, hill' β†’ 'macmillan' (score: 47.61904761904761)
❌ No strong match: 'partridge' β†’ 'milford' (score: 25.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'christophers' β†’ 'hutchinson' (score: 45.45454545454546)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'nat. adult school union' β†’ 'hutchinson' (score: 42.42424242424242)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'bailliere' β†’ 'macmillan' (score: 44.44444444444444)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'p. gee' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'lippincott' β†’ 'simpkin 1' (score: 42.10526315789473)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'r. scott' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'gay & h.' β†’ 'longmans' (score: 25.0)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'beaumont pr.' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'melrose' β†’ 'milford' (score: 42.85714285714286)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'oliphants' β†’ 'longmans' (score: 47.05882352941176)
❌ No strong match: 'bowes & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'thacker' β†’ 'methuen' (score: 42.85714285714286)
❌ No strong match: 'funk & w.' β†’ 'unwin' (score: 42.85714285714286)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'duckworth' β†’ 'constable ' (score: 31.57894736842105)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'author' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'titus wilson' β†’ 'unwin' (score: 47.05882352941176)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'willing' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'international bookshops' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'anglo-eastern pubg. co.' β†’ 'constable ' (score: 30.303030303030297)
❌ No strong match: 'puma pubg. co.' β†’ 'macmillan' (score: 26.086956521739136)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'aldine pubg. co.' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'harding & more' β†’ 'heinemann' (score: 34.78260869565217)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'p. lund' β†’ 'unwin' (score: 33.333333333333336)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'the stage' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'congregational union' β†’ 'constable ' (score: 46.666666666666664)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'low' β†’ 'milford' (score: 40.0)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'united kingdom alliance' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'dent' β†’ 'methuen' (score: 36.36363636363637)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'international bookshops' β†’ 'heinemann' (score: 31.25)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'sherratt & h.' β†’ 'methuen' (score: 30.000000000000004)
❌ No strong match: 'routledge' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'w. hodge' β†’ 'milford' (score: 26.66666666666667)
❌ No strong match: 'wingwood pubg. co.' β†’ 'unwin' (score: 26.086956521739136)
❌ No strong match: 'warren & son' β†’ 'hutchinson' (score: 36.36363636363637)
❌ No strong match: 'foulis' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'morgan & s.' β†’ 'longmans' (score: 52.63157894736843)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'univ. of london pr.' β†’ 'hutchinson' (score: 34.48275862068966)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'winning post' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'winning post' β†’ 'simpkin 1' (score: 38.095238095238095)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'geographia' β†’ 'longmans' (score: 33.333333333333336)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'wisden' β†’ 'unwin' (score: 54.54545454545454)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'witherby' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'k. paul' β†’ 'cassell' (score: 28.57142857142857)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'harrap' β†’ 'macmillan' (score: 26.66666666666667)
❌ No strong match: 'athletic pubns.' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: '" playtime,"' β†’ 'wyman' (score: 23.529411764705888)
❌ No strong match: 'f. h. revell' β†’ 'cassell' (score: 31.57894736842105)
❌ No strong match: 'allen & u.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r. hayes' β†’ 'methuen' (score: 26.66666666666667)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'church missionary soc.' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'bird' β†’ 'milford' (score: 54.54545454545454)
❌ No strong match: 'angold' β†’ 'wyman' (score: 36.36363636363637)
❌ No strong match: 'galloway' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'frowde and hodder & s.' β†’ 'longmans' (score: 26.66666666666667)
❌ No strong match: 'burns, oates' β†’ 'constable ' (score: 36.36363636363637)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'foulsham' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'luzac' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'theosophical pubg. house' β†’ 'constable ' (score: 29.411764705882348)
❌ No strong match: 'student christian movement' β†’ 'hutchinson' (score: 44.44444444444444)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'grafton' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's.p.c.k.' β†’ 'simpkin 1' (score: 35.29411764705882)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'marsden' β†’ 'wyman' (score: 50.0)
❌ No strong match: 'putnam' β†’ 'hutchinson' (score: 37.5)
❌ No strong match: 'times of ceylon' β†’ 'hutchinson' (score: 40.0)
❌ No strong match: 'hogarth pr.' β†’ 'longmans' (score: 31.57894736842105)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'l. b. hill' β†’ 'macmillan' (score: 31.57894736842105)
❌ No strong match: 'skeffington' β†’ 'simpkin 1' (score: 40.0)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'e. nash' β†’ 'longmans' (score: 40.0)
❌ No strong match: 's.p.g.' β†’ 'simpkin 1' (score: 26.66666666666667)
❌ No strong match: 'field pr.' β†’ 'milford' (score: 37.5)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'bell' β†’ 'cassell' (score: 54.54545454545454)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'w. rider' β†’ 'unwin' (score: 30.76923076923077)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'jack' β†’ 'macmillan' (score: 30.76923076923077)
❌ No strong match: '"country life"; newnes' β†’ 'constable ' (score: 43.75)
❌ No strong match: 'chapman & h.' β†’ 'macmillan' (score: 38.095238095238095)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'sweet & m.' β†’ 'heinemann' (score: 31.57894736842105)
❌ No strong match: 'merton pr.' β†’ 'methuen' (score: 47.05882352941176)
❌ No strong match: 'seeley, service' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'c. j. farncombe' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'headley bros.' β†’ 'constable ' (score: 34.78260869565217)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'black' β†’ 'longmans' (score: 30.76923076923077)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'gyldendal' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'revell' β†’ 'cassell' (score: 46.15384615384615)
❌ No strong match: 'p. & g. wells' β†’ 'cassell' (score: 30.000000000000004)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'hurst & b.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'blackie' β†’ 'macmillan' (score: 37.5)
❌ No strong match: 'pearson' β†’ 'heinemann' (score: 37.5)
❌ No strong match: 's. paul' β†’ 'constable ' (score: 35.29411764705882)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'jarrold' β†’ 'milford' (score: 28.57142857142857)
❌ No strong match: 'a. wheaton' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'holden & h.' β†’ 'constable ' (score: 38.095238095238095)
❌ No strong match: 'nelson' β†’ 'hutchinson' (score: 50.0)
❌ No strong match: 'harper' β†’ 'methuen' (score: 30.76923076923077)
❌ No strong match: 'nash & g.' β†’ 'longmans' (score: 35.29411764705882)
❌ No strong match: 'stockwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'wireless pr.' β†’ 'milford' (score: 31.57894736842105)
❌ No strong match: 'butterworth' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'butterworth & co.' β†’ 'hutchinson' (score: 29.629629629629626)
❌ No strong match: 'arrowsmith' β†’ 'methuen' (score: 35.29411764705882)
❌ No strong match: 'watts' β†’ 'wyman' (score: 40.0)
❌ No strong match: 't. f. unwin' β†’ 'unwin' (score: 62.5)
❌ No strong match: 'cuala pr.' β†’ 'constable ' (score: 42.10526315789473)
❌ No strong match: 't. w. laurie' β†’ 'methuen' (score: 31.57894736842105)
❌ No strong match: 'technical journals' β†’ 'hutchinson' (score: 42.85714285714286)
❌ No strong match: 'w. h. smith' β†’ 'methuen' (score: 33.333333333333336)
❌ No strong match: 'harrison' β†’ 'hutchinson' (score: 55.55555555555556)
❌ No strong match: 'spon' β†’ 'simpkin 1' (score: 46.15384615384615)
❌ No strong match: 'ward, lock' β†’ 'wyman' (score: 26.66666666666667)
❌ No strong match: 'e. arnold' β†’ 'heinemann' (score: 33.333333333333336)
❌ No strong match: 'pitman' β†’ 'wyman' (score: 54.54545454545454)
❌ No strong match: 'robertson & mullens' β†’ 'methuen' (score: 38.46153846153846)
❌ No strong match: 'drane' β†’ 'wyman' (score: 40.0)
❌ No strong match: 'r.t.s.' β†’ 'hutchinson' (score: 25.0)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'chapman & dodd' β†’ 'macmillan' (score: 34.78260869565217)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'collins' β†’ 'macmillan' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'lane' β†’ 'longmans' (score: 50.0)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'hodder & s.' β†’ 'constable ' (score: 28.57142857142857)
❌ No strong match: 'j. cape' β†’ 'cassell' (score: 42.85714285714286)
❌ No strong match: 'c. lockwood' β†’ 'milford' (score: 33.333333333333336)
❌ No strong match: 'page & co.' β†’ 'constable ' (score: 30.000000000000004)
❌ No strong match: 'j. brown' β†’ 'wyman' (score: 30.76923076923077)
❌ No strong match: 'blackwell' β†’ 'cassell' (score: 50.0)
❌ No strong match: 'pilgrim press' β†’ 'longmans' (score: 38.095238095238095)
❌ No strong match: 'christian endeavour book room' β†’ 'constable ' (score: 30.76923076923077)
❌ No strong match: 'h. jenkins' β†’ 'heinemann' (score: 42.10526315789473)
❌ No strong match: 'j. munro' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'dean' β†’ 'heinemann' (score: 46.15384615384615)
❌ No strong match: 'allenson' β†’ 'macmillan' (score: 47.05882352941176)
❌ No strong match: 'griffin' β†’ 'simpkin 1' (score: 37.5)
❌ No strong match: 'appleton' β†’ 'methuen' (score: 40.0)
❌ No strong match: 'selwyn & b.' β†’ 'wyman' (score: 37.5)
❌ No strong match: 'h.m. stationery off.' β†’ 'constable ' (score: 33.333333333333336)
❌ No strong match: 'heffer' β†’ 'heinemann' (score: 40.0)
❌ No strong match: 'crosby lockwood' β†’ 'constable ' (score: 40.0)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'mills & b.' β†’ 'macmillan' (score: 42.10526315789473)
❌ No strong match: 'camb. univ. pr.' β†’ 'constable ' (score: 31.999999999999996)
❌ No strong match: 'bale' β†’ 'constable ' (score: 42.85714285714286)
βœ… Matched 396 books to 'Milford' in 1922
βœ… Matched 1 books to 'Wyman' in 1922
βœ… Matched 264 books to 'Macmillan' in 1922
βœ… Matched 126 books to 'Longmans' in 1922
βœ… Matched 168 books to 'Methuen' in 1922
βœ… Matched 109 books to 'Constable ' in 1922
⚠️ Skipping 'simpkin 1' in 1922 due to missing lat/lon
⚠️ Skipping 'cassell' in 1922 due to missing lat/lon
⚠️ Skipping 'unwin' in 1922 due to missing lat/lon
⚠️ Skipping 'hutchinson' in 1922 due to missing lat/lon
⚠️ Skipping 'heinemann' in 1922 due to missing lat/lon

βœ… Done! 61 entries written to publishers.json